Plugin Directory

Changeset 2504488


Ignore:
Timestamp:
03/27/2021 01:52:26 PM (5 years ago)
Author:
anderly
Message:

Release 2.4.1, see readme.txt for the changelog.

Location:
woocommerce-mailchimp
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-mailchimp/tags/2.4.1/includes/class-ss-wc-mailchimp-handler.php

    r2283314 r2504488  
    422422            // Allow hooking into subscription options.
    423423            $options = apply_filters( 'ss_wc_mailchimp_subscribe_options', $subscribe_options, $order_id );
     424
     425            /**
     426             * Allow overriding whether to subscribe the customer
     427             * @since 2.4.1
     428            */
     429            $subscribe_customer = apply_filters( 'ss_wc_mailchimp_subscribe_customer', $subscribe_customer, $subscribe_options, $order_id );
    424430
    425431            // Extract options into variables.
  • woocommerce-mailchimp/tags/2.4.1/includes/class-ss-wc-mailchimp-plugin.php

    r2502578 r2504488  
    1616     * @var string
    1717     */
    18     private static $version = '2.4.0';
     18    private static $version = '2.4.1';
    1919
    2020    /**
  • woocommerce-mailchimp/tags/2.4.1/readme.txt

    r2502578 r2504488  
    77WC tested up to: 5.1.0
    88Requires PHP: 5.6
    9 Stable tag: 2.4.0
     9Stable tag: 2.4.1
    1010License: GPLv3
    1111
     
    119119
    120120== Changelog ==
     121
     122#### 2.4.1 - March 27, 2021
     123- Added new `ss_wc_mailchimp_subscribe_customer` hook to allow easier override of whether or not to subscribe the customer.
    121124
    122125#### 2.4.0 - March 24, 2021
  • woocommerce-mailchimp/tags/2.4.1/woocommerce-mailchimp.php

    r2502578 r2504488  
    66 * Author: Saint Systems
    77 * Author URI: https://www.saintsystems.com
    8  * Version: 2.4.0
     8 * Version: 2.4.1
    99 * WC tested up to: 5.1.0
    1010 * Text Domain: woocommerce-mailchimp
  • woocommerce-mailchimp/trunk/includes/class-ss-wc-mailchimp-handler.php

    r2283314 r2504488  
    422422            // Allow hooking into subscription options.
    423423            $options = apply_filters( 'ss_wc_mailchimp_subscribe_options', $subscribe_options, $order_id );
     424
     425            /**
     426             * Allow overriding whether to subscribe the customer
     427             * @since 2.4.1
     428            */
     429            $subscribe_customer = apply_filters( 'ss_wc_mailchimp_subscribe_customer', $subscribe_customer, $subscribe_options, $order_id );
    424430
    425431            // Extract options into variables.
  • woocommerce-mailchimp/trunk/includes/class-ss-wc-mailchimp-plugin.php

    r2502578 r2504488  
    1616     * @var string
    1717     */
    18     private static $version = '2.4.0';
     18    private static $version = '2.4.1';
    1919
    2020    /**
  • woocommerce-mailchimp/trunk/readme.txt

    r2502578 r2504488  
    77WC tested up to: 5.1.0
    88Requires PHP: 5.6
    9 Stable tag: 2.4.0
     9Stable tag: 2.4.1
    1010License: GPLv3
    1111
     
    119119
    120120== Changelog ==
     121
     122#### 2.4.1 - March 27, 2021
     123- Added new `ss_wc_mailchimp_subscribe_customer` hook to allow easier override of whether or not to subscribe the customer.
    121124
    122125#### 2.4.0 - March 24, 2021
  • woocommerce-mailchimp/trunk/woocommerce-mailchimp.php

    r2502578 r2504488  
    66 * Author: Saint Systems
    77 * Author URI: https://www.saintsystems.com
    8  * Version: 2.4.0
     8 * Version: 2.4.1
    99 * WC tested up to: 5.1.0
    1010 * Text Domain: woocommerce-mailchimp
Note: See TracChangeset for help on using the changeset viewer.