Plugin Directory

Changeset 3396084


Ignore:
Timestamp:
11/15/2025 05:51:00 AM (4 months ago)
Author:
wpmart
Message:

fixed

Location:
animated-number-counters/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • animated-number-counters/trunk/index.php

    r3378507 r3396084  
    1111  License: GPL-2.0-or-later
    1212  License URI: https://www.gnu.org/licenses/gpl-2.0.html
    13   Version: 2.5
     13  Version: 2.6
    1414 */
    1515if (!defined('ABSPATH'))
     
    1818define('anc_6310_plugin_url', plugin_dir_path(__FILE__));
    1919define('anc_6310_plugin_dir_url', plugin_dir_url(__FILE__));
    20 define ('anc_6310_PLUGIN_CURRENT_VERSION', 2.5);
     20define ('anc_6310_PLUGIN_CURRENT_VERSION', 2.6);
    2121define( 'ANC_6310_PLUGIN_LANGUAGE_PATH', dirname( plugin_basename( __FILE__ ) ) . '/languages' );
    2222
     
    5454{
    5555   global $wpdb;
    56    wp_enqueue_style('anc-6310-font-awesome-5-0-13', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css');
     56   wp_enqueue_style('anc-6310-font-awesome-new', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
     57   wp_enqueue_style('anc-6310-font-awesome-old', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/v4-shims.min.css');
    5758   wp_enqueue_style('anc-6310-style', plugins_url('assets/css/style.css', __FILE__));
    5859
  • animated-number-counters/trunk/readme.txt

    r3378507 r3396084  
    44Requires at least: 6.0
    55Tested up to: 6.8
    6 Stable tag: 2.5
     6Stable tag: 2.6
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    175175
    176176== Changelog ==
     177= 2.6 =
     178* FEATURE – Fixed font awesome URL
     179
    177180= 2.5 =
    178181* Fixed animation bug
  • animated-number-counters/trunk/settings/helper/functions.php

    r3043226 r3396084  
    123123   function anc_6310_link_css_js()
    124124   {
    125       wp_enqueue_style('anc-6310-font-awesome-5-0-13', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css');
     125      wp_enqueue_style('anc-6310-font-awesome-new', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
     126      wp_enqueue_style('anc-6310-font-awesome-old', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/v4-shims.min.css');
    126127        wp_enqueue_style('anc-6310-codemirror-style', anc_6310_plugin_dir_url . 'assets/css/codemirror.min.css');
    127128        wp_enqueue_style('anc-6310-color-style', anc_6310_plugin_dir_url . 'assets/css/jquery.minicolors.min.css');
  • animated-number-counters/trunk/shortcode.php

    r3242965 r3396084  
    6565    }
    6666
    67     wp_enqueue_style('anc-6310-font-awesome-5-0-13', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css');
     67    wp_enqueue_style('anc-6310-font-awesome-new', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
     68    wp_enqueue_style('anc-6310-font-awesome-old', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/v4-shims.min.css');
    6869    wp_enqueue_style('anc-6310-common-output-css', plugins_url('output/css/common-output.css', __FILE__));
    6970    wp_enqueue_style('anc-6310-font-awesome-4-07', plugins_url('assets/css/font-awesome.min.css', __FILE__));
Note: See TracChangeset for help on using the changeset viewer.