WooCommerce MailChimp - Version 1.3.1

Version Description

  • Fix for MailChimp merge vars bug introduced in v1.3
Download this release

Release Info

Developer anderly
Plugin Icon 128x128 WooCommerce MailChimp
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3 to 1.3.1

README.md CHANGED
@@ -64,6 +64,9 @@ If you need help, have problems, want to leave feedback or want to provide const
64
 
65
  ### Changelog
66
 
 
 
 
67
  #### 1.3
68
  * Breaking Change: 'ss_wc_mailchimp_subscribe_merge_vars' action filter now passes $order_id param to enable retrieving additional order info/meta to use in MailChimp merge vars
69
  * Small fix to order_created subscribe event to work with PayPal Payment Gateway
64
 
65
  ### Changelog
66
 
67
+ #### 1.3.1
68
+ * Fix for MailChimp merge vars bug introduced in v1.3
69
+
70
  #### 1.3
71
  * Breaking Change: 'ss_wc_mailchimp_subscribe_merge_vars' action filter now passes $order_id param to enable retrieving additional order info/meta to use in MailChimp merge vars
72
  * Small fix to order_created subscribe event to work with PayPal Payment Gateway
classes/class-ss-wc-integration-mailchimp.php CHANGED
@@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
9
  *
10
  * @class SS_WC_Integration_MailChimp
11
  * @extends WC_Integration
12
- * @version 1.3
13
  * @package WooCommerce MailChimp
14
  * @author Saint Systems
15
  */
@@ -392,7 +392,7 @@ class SS_WC_Integration_MailChimp extends WC_Integration {
392
  );
393
  }
394
 
395
- $vars = apply_filters( 'ss_wc_mailchimp_subscribe_merge_vars', $order_id, $merge_vars );
396
 
397
  $email_type = 'html';
398
  $double_optin = ( $this->double_optin == 'no' ? false : true );
9
  *
10
  * @class SS_WC_Integration_MailChimp
11
  * @extends WC_Integration
12
+ * @version 1.3.1
13
  * @package WooCommerce MailChimp
14
  * @author Saint Systems
15
  */
392
  );
393
  }
394
 
395
+ $vars = apply_filters( 'ss_wc_mailchimp_subscribe_merge_vars', $merge_vars, $order_id );
396
 
397
  $email_type = 'html';
398
  $double_optin = ( $this->double_optin == 'no' ? false : true );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: anderly, saintsystems
3
  Tags: woocommerce, mailchimp
4
  Requires at least: 3.5.1
5
  Tested up to: 3.8.1
6
- Stable tag: 1.3
7
  License: GPLv3
8
 
9
  Simple and flexible MailChimp integration for WooCommerce.
@@ -78,6 +78,9 @@ If you need help, have problems, want to leave feedback or want to provide const
78
 
79
  == Changelog ==
80
 
 
 
 
81
  = 1.3 =
82
  * Breaking Change: 'ss_wc_mailchimp_subscribe_merge_vars' action filter now passes $order_id param to enable retrieving additional order info/meta to use in MailChimp merge vars
83
  * Small fix to order_created subscribe event to work with PayPal Payment Gateway
3
  Tags: woocommerce, mailchimp
4
  Requires at least: 3.5.1
5
  Tested up to: 3.8.1
6
+ Stable tag: 1.3.1
7
  License: GPLv3
8
 
9
  Simple and flexible MailChimp integration for WooCommerce.
78
 
79
  == Changelog ==
80
 
81
+ = 1.3.1 =
82
+ * Fix for MailChimp merge vars bug introduced in v1.3
83
+
84
  = 1.3 =
85
  * Breaking Change: 'ss_wc_mailchimp_subscribe_merge_vars' action filter now passes $order_id param to enable retrieving additional order info/meta to use in MailChimp merge vars
86
  * Small fix to order_created subscribe event to work with PayPal Payment Gateway
woocommerce-mailchimp.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: WooCommerce MailChimp provides simple MailChimp integration for WooCommerce.
6
  * Author: Adam Anderly
7
  * Author URI: http://anderly.com
8
- * Version: 1.3
9
  * Text Domain: ss_wc_mailchimp
10
  * Domain Path: languages
11
  *
5
  * Description: WooCommerce MailChimp provides simple MailChimp integration for WooCommerce.
6
  * Author: Adam Anderly
7
  * Author URI: http://anderly.com
8
+ * Version: 1.3.1
9
  * Text Domain: ss_wc_mailchimp
10
  * Domain Path: languages
11
  *