Plugin Directory

Changeset 2845710


Ignore:
Timestamp:
01/09/2023 08:17:12 PM (3 years ago)
Author:
LogicHunt
Message:

Corrected the shortcode name.

Location:
wp-counter-up
Files:
108 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-counter-up/trunk/README.txt

    r2805837 r2845710  
    55Requires at least: 5.5
    66Tested up to: 6.1
    7 Stable tag: 2.0.1
     7Stable tag: 2.1.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    130130== Changelog ==
    131131
     132= 2.1.0 =
     133* Corrected the shortcode name.
     134
    132135= 2.0.1 =
    133136* Admin form field Validation.
  • wp-counter-up/trunk/admin/class-wp-counter-up-admin.php

    r2788614 r2845710  
    957957            switch ($column) {
    958958                case 'shortcode':
    959                     echo '<input type="text" class="lgx_logo_slider_list_copy_input"  readonly="readonly" value="[lgxlogoslider id=&quot;' . $post_id . '&quot;]">';
     959                    echo '<input type="text" class="lgx_logo_slider_list_copy_input"  readonly="readonly" value="[lgxcounterup id=&quot;' . $post_id . '&quot;]">';
    960960                    // echo '<div>Click on shortcode to copy</div>';
    961961                    break;
    962962
    963963                case 'php_shortcode':
    964                     echo '<input type="text" class="lgx_logo_slider_list_copy_input" style="width: 360px; text-align: center;" readonly="readonly" value="<?php echo do_shortcode( \'[lgxlogoslider id=&quot;' . $post_id . '&quot;]\' ); ?>">';
     964                    echo '<input type="text" class="lgx_logo_slider_list_copy_input" style="width: 360px; text-align: center;" readonly="readonly" value="<?php echo do_shortcode( \'[lgxcounterup id=&quot;' . $post_id . '&quot;]\' ); ?>">';
    965965                    // echo '<div>Click on theme or plugin code to copy</div>';
    966966                    break;
  • wp-counter-up/trunk/wp-counter-up.php

    r2803375 r2845710  
    1111 * Plugin URI:        http://logichunt.com/product/wordpress-counter-up
    1212 * Description:       This is a short description of what the plugin does. It's displayed in the WordPress admin area.
    13  * Version:           2.0.1
     13 * Version:           2.1.0
    1414 * Author:            LogicHunt, Vaskar Jewel
    1515 * Author URI:        http://logichunt.com
     
    3030 * Rename this for your plugin and update it as you release new versions.
    3131 */
    32 define( 'WP_COUNTER_UP', '2.0.0' );
     32define( 'WP_COUNTER_UP', '2.1.0' );
    3333
    3434//plugin definition specific constants
    35 defined( 'LGX_WCU_PLUGIN_VERSION' )        or define( 'LGX_WCU_PLUGIN_VERSION', '2.0.1' );
     35defined( 'LGX_WCU_PLUGIN_VERSION' )        or define( 'LGX_WCU_PLUGIN_VERSION', '2.1.0' );
    3636defined( 'LGX_WCU_WP_PLUGIN' )             or define( 'LGX_WCU_WP_PLUGIN', 'wp-counter-up' );
    3737defined( 'LGX_WCU_PLUGIN_BASE' )           or define( 'LGX_WCU_PLUGIN_BASE', plugin_basename( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.