Plugin Directory

Changeset 3385402


Ignore:
Timestamp:
10/27/2025 05:59:18 PM (4 months ago)
Author:
anderly
Message:

Release 2.5.1, see readme.txt for the changelog.

Location:
woocommerce-mailchimp
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-mailchimp/tags/2.5.1/includes/class-ss-wc-mailchimp-plugin.php

    r3382951 r3385402  
    1616     * @var string
    1717     */
    18     private static $version = '2.5.0';
     18    private static $version = '2.5.1';
    1919
    2020    /**
     
    481481        register_deactivation_hook( SS_WC_MAILCHIMP_FILE, array( __CLASS__, 'deactivate' ) );
    482482
    483         // Load plugin textdomain on plugins_loaded hook (fix for just-in-time translation loading)
    484         add_action( 'plugins_loaded', array( $this, 'load_plugin_textdomain' ) );
     483        // Load plugin textdomain on init hook (fix for just-in-time translation loading in WP 6.7+)
     484        add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
    485485
    486486        // Register AJAX handlers - must be done on every request, not just admin
  • woocommerce-mailchimp/tags/2.5.1/readme.txt

    r3382951 r3385402  
    77WC tested up to: 10.3.0
    88Requires PHP: 5.6
    9 Stable tag: 2.5.0
    10 Version: 2.5.0
     9Stable tag: 2.5.1
     10Version: 2.5.1
    1111License: GPLv3
    1212
     
    120120
    121121== Changelog ==
     122
     123#### 2.5.1 - Oct 27, 2025
     124- Fix plugin text domain hook.
    122125
    123126#### 2.5.0 - Oct 22, 2025
  • woocommerce-mailchimp/tags/2.5.1/woocommerce-mailchimp.php

    r3382951 r3385402  
    66 * Author: Saint Systems
    77 * Author URI: https://www.saintsystems.com
    8  * Version: 2.5.0
     8 * Version: 2.5.1
    99 * WC tested up to: 10.3.0
    1010 * Text Domain: woocommerce-mailchimp
  • woocommerce-mailchimp/trunk/includes/class-ss-wc-mailchimp-plugin.php

    r3382951 r3385402  
    1616     * @var string
    1717     */
    18     private static $version = '2.5.0';
     18    private static $version = '2.5.1';
    1919
    2020    /**
     
    481481        register_deactivation_hook( SS_WC_MAILCHIMP_FILE, array( __CLASS__, 'deactivate' ) );
    482482
    483         // Load plugin textdomain on plugins_loaded hook (fix for just-in-time translation loading)
    484         add_action( 'plugins_loaded', array( $this, 'load_plugin_textdomain' ) );
     483        // Load plugin textdomain on init hook (fix for just-in-time translation loading in WP 6.7+)
     484        add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
    485485
    486486        // Register AJAX handlers - must be done on every request, not just admin
  • woocommerce-mailchimp/trunk/readme.txt

    r3382951 r3385402  
    77WC tested up to: 10.3.0
    88Requires PHP: 5.6
    9 Stable tag: 2.5.0
    10 Version: 2.5.0
     9Stable tag: 2.5.1
     10Version: 2.5.1
    1111License: GPLv3
    1212
     
    120120
    121121== Changelog ==
     122
     123#### 2.5.1 - Oct 27, 2025
     124- Fix plugin text domain hook.
    122125
    123126#### 2.5.0 - Oct 22, 2025
  • woocommerce-mailchimp/trunk/woocommerce-mailchimp.php

    r3382951 r3385402  
    66 * Author: Saint Systems
    77 * Author URI: https://www.saintsystems.com
    8  * Version: 2.5.0
     8 * Version: 2.5.1
    99 * WC tested up to: 10.3.0
    1010 * Text Domain: woocommerce-mailchimp
Note: See TracChangeset for help on using the changeset viewer.