Version Description
Download this release
Release Info
Developer | anderly |
Plugin | WooCommerce MailChimp |
Version | 2.4.5 |
Comparing to | |
See all releases |
Code changes from version 2.4.4 to 2.4.5
includes/class-ss-wc-mailchimp-plugin.php
CHANGED
@@ -15,7 +15,7 @@ final class SS_WC_MailChimp_Plugin {
|
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
-
private static $version = '2.4.
|
19 |
|
20 |
/**
|
21 |
* Plugin singleton instance
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
+
private static $version = '2.4.5';
|
19 |
|
20 |
/**
|
21 |
* Plugin singleton instance
|
includes/class-ss-wc-mailchimp.php
CHANGED
@@ -196,9 +196,12 @@ class SS_WC_MailChimp {
|
|
196 |
'email_address' => $email_address,
|
197 |
'status' => $double_opt_in ? 'pending' : 'subscribed',
|
198 |
'email_type' => $email_type,
|
199 |
-
'merge_fields' => $merge_fields,
|
200 |
);
|
201 |
|
|
|
|
|
|
|
|
|
202 |
if ( is_array( $interests ) && !empty( $interests ) ) {
|
203 |
$args['interests'] = $interests;
|
204 |
}
|
196 |
'email_address' => $email_address,
|
197 |
'status' => $double_opt_in ? 'pending' : 'subscribed',
|
198 |
'email_type' => $email_type,
|
|
|
199 |
);
|
200 |
|
201 |
+
if ( is_array( $merge_fields ) && !empty( $merge_fields ) ) {
|
202 |
+
$args['merge_fields'] = $merge_fields;
|
203 |
+
}
|
204 |
+
|
205 |
if ( is_array( $interests ) && !empty( $interests ) ) {
|
206 |
$args['interests'] = $interests;
|
207 |
}
|
readme.txt
CHANGED
@@ -3,10 +3,10 @@ Contributors: saintsystems, anderly
|
|
3 |
Donate link: http://ssms.us/hVdk
|
4 |
Tags: woocommerce, mailchimp, ecommerce, email
|
5 |
Requires at least: 4.7.0
|
6 |
-
Tested up to: 5.
|
7 |
-
WC tested up to: 5.
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.4.
|
10 |
License: GPLv3
|
11 |
|
12 |
Simple and flexible Mailchimp integration for WooCommerce.
|
@@ -119,6 +119,11 @@ Also, if you enjoy using the software [we'd love it if you could give us a revie
|
|
119 |
|
120 |
== Changelog ==
|
121 |
|
|
|
|
|
|
|
|
|
|
|
122 |
#### 2.4.4 - May 26, 2021
|
123 |
- Fix typo.
|
124 |
|
3 |
Donate link: http://ssms.us/hVdk
|
4 |
Tags: woocommerce, mailchimp, ecommerce, email
|
5 |
Requires at least: 4.7.0
|
6 |
+
Tested up to: 5.8.1
|
7 |
+
WC tested up to: 5.7.1
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.4.5
|
10 |
License: GPLv3
|
11 |
|
12 |
Simple and flexible Mailchimp integration for WooCommerce.
|
119 |
|
120 |
== 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.
|
126 |
+
|
127 |
#### 2.4.4 - May 26, 2021
|
128 |
- Fix typo.
|
129 |
|
woocommerce-mailchimp.php
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
* Description: WP WooCommerce Mailchimp provides simple and flexible Mailchimp integration for WooCommerce.
|
6 |
* Author: Saint Systems
|
7 |
* Author URI: https://www.saintsystems.com
|
8 |
-
* Version: 2.4.
|
9 |
-
* WC tested up to: 5.
|
10 |
* Text Domain: woocommerce-mailchimp
|
11 |
* Domain Path: languages
|
12 |
*
|
5 |
* Description: WP WooCommerce Mailchimp provides simple and flexible Mailchimp integration for WooCommerce.
|
6 |
* Author: Saint Systems
|
7 |
* Author URI: https://www.saintsystems.com
|
8 |
+
* Version: 2.4.5
|
9 |
+
* WC tested up to: 5.7.1
|
10 |
* Text Domain: woocommerce-mailchimp
|
11 |
* Domain Path: languages
|
12 |
*
|