Plugin Directory

Changeset 2609659


Ignore:
Timestamp:
10/05/2021 02:34:00 PM (4 years ago)
Author:
anderly
Message:

Release 2.4.5, see readme.txt for the changelog.

Location:
woocommerce-mailchimp
Files:
8 edited
1 copied

Legend:

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

    r2538132 r2609659  
    1616     * @var string
    1717     */
    18     private static $version = '2.4.4';
     18    private static $version = '2.4.5';
    1919
    2020    /**
  • woocommerce-mailchimp/tags/2.4.5/includes/class-ss-wc-mailchimp.php

    r2450821 r2609659  
    197197            'status'        => $double_opt_in ? 'pending' : 'subscribed',
    198198            'email_type'    => $email_type,
    199             'merge_fields'  => $merge_fields,
    200199        );
     200
     201        if ( is_array( $merge_fields ) && !empty( $merge_fields ) ) {
     202            $args['merge_fields'] = $merge_fields;
     203        }
    201204
    202205        if ( is_array( $interests ) && !empty( $interests ) ) {
  • woocommerce-mailchimp/tags/2.4.5/readme.txt

    r2538132 r2609659  
    44Tags: woocommerce, mailchimp, ecommerce, email
    55Requires at least: 4.7.0
    6 Tested up to: 5.7.2
    7 WC tested up to: 5.3.0
     6Tested up to: 5.8.1
     7WC tested up to: 5.7.1
    88Requires PHP: 5.6
    9 Stable tag: 2.4.4
     9Stable tag: 2.4.5
    1010License: GPLv3
    1111
     
    119119
    120120== Changelog ==
     121
     122#### 2.4.5 - Oct 5, 2021
     123- Only send merge fields if not empty.
     124- Bump WC tested version up to 5.7.1.
     125- Bump WP tested version up to 5.8.1.
    121126
    122127#### 2.4.4 - May 26, 2021
  • woocommerce-mailchimp/tags/2.4.5/woocommerce-mailchimp.php

    r2538132 r2609659  
    66 * Author: Saint Systems
    77 * Author URI: https://www.saintsystems.com
    8  * Version: 2.4.4
    9  * WC tested up to: 5.3.0
     8 * Version: 2.4.5
     9 * WC tested up to: 5.7.1
    1010 * Text Domain: woocommerce-mailchimp
    1111 * Domain Path: languages
  • woocommerce-mailchimp/trunk/includes/class-ss-wc-mailchimp-plugin.php

    r2538132 r2609659  
    1616     * @var string
    1717     */
    18     private static $version = '2.4.4';
     18    private static $version = '2.4.5';
    1919
    2020    /**
  • woocommerce-mailchimp/trunk/includes/class-ss-wc-mailchimp.php

    r2450821 r2609659  
    197197            'status'        => $double_opt_in ? 'pending' : 'subscribed',
    198198            'email_type'    => $email_type,
    199             'merge_fields'  => $merge_fields,
    200199        );
     200
     201        if ( is_array( $merge_fields ) && !empty( $merge_fields ) ) {
     202            $args['merge_fields'] = $merge_fields;
     203        }
    201204
    202205        if ( is_array( $interests ) && !empty( $interests ) ) {
  • woocommerce-mailchimp/trunk/readme.txt

    r2538132 r2609659  
    44Tags: woocommerce, mailchimp, ecommerce, email
    55Requires at least: 4.7.0
    6 Tested up to: 5.7.2
    7 WC tested up to: 5.3.0
     6Tested up to: 5.8.1
     7WC tested up to: 5.7.1
    88Requires PHP: 5.6
    9 Stable tag: 2.4.4
     9Stable tag: 2.4.5
    1010License: GPLv3
    1111
     
    119119
    120120== Changelog ==
     121
     122#### 2.4.5 - Oct 5, 2021
     123- Only send merge fields if not empty.
     124- Bump WC tested version up to 5.7.1.
     125- Bump WP tested version up to 5.8.1.
    121126
    122127#### 2.4.4 - May 26, 2021
  • woocommerce-mailchimp/trunk/woocommerce-mailchimp.php

    r2538132 r2609659  
    66 * Author: Saint Systems
    77 * Author URI: https://www.saintsystems.com
    8  * Version: 2.4.4
    9  * WC tested up to: 5.3.0
     8 * Version: 2.4.5
     9 * WC tested up to: 5.7.1
    1010 * Text Domain: woocommerce-mailchimp
    1111 * Domain Path: languages
Note: See TracChangeset for help on using the changeset viewer.