WooCommerce MailChimp - Version 1.1.1

Version Description

  • Update to address issue with subscriptions not occurring on order create "pending"
Download this release

Release Info

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

Code changes from version 1.1 to 1.1.1

README.md CHANGED
@@ -53,6 +53,9 @@ Thanks in advance for your help on any translation efforts!
53
 
54
  ### Changelog
55
 
 
 
 
56
  ##### 1.1
57
  * Add the option to display an opt-in field on checkout
58
 
53
 
54
  ### Changelog
55
 
56
+ ##### 1.1.1
57
+ * Update to address issue with subscriptions not occurring on order create "pending"
58
+
59
  ##### 1.1
60
  * Add the option to display an opt-in field on checkout
61
 
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.0
13
  * @package WooCommerce MailChimp
14
  * @author Saint Systems
15
  */
@@ -167,7 +167,7 @@ class SS_WC_Integration_MailChimp extends WC_Integration {
167
  'default' => 'completed',
168
  'options' => array(
169
  'completed' => __( 'Order Completed', 'ss_wc_mailchimp' ),
170
- 'processing' => __( 'Order Created', 'ss_wc_mailchimp' ),
171
  ),
172
  ),
173
  'api_key' => array(
9
  *
10
  * @class SS_WC_Integration_MailChimp
11
  * @extends WC_Integration
12
+ * @version 1.1.1
13
  * @package WooCommerce MailChimp
14
  * @author Saint Systems
15
  */
167
  'default' => 'completed',
168
  'options' => array(
169
  'completed' => __( 'Order Completed', 'ss_wc_mailchimp' ),
170
+ 'pending' => __( 'Order Created', 'ss_wc_mailchimp' ),
171
  ),
172
  ),
173
  'api_key' => array(
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: anderly, saintsystems
3
  Tags: woocommerce, mailchimp
4
  Requires at least: 3.6
5
- Tested up to: 3.7.1
6
- Stable tag: 1.1
7
  License: GPLv3
8
 
9
  Simple MailChimp integration for WooCommerce.
@@ -67,6 +67,9 @@ Thanks in advance for your help on any translation efforts!
67
 
68
  == Changelog ==
69
 
 
 
 
70
  = 1.1 =
71
  * Add the option to display an opt-in field on checkout
72
 
2
  Contributors: anderly, saintsystems
3
  Tags: woocommerce, mailchimp
4
  Requires at least: 3.6
5
+ Tested up to: 3.8
6
+ Stable tag: 1.1.1
7
  License: GPLv3
8
 
9
  Simple MailChimp integration for WooCommerce.
67
 
68
  == Changelog ==
69
 
70
+ = 1.1.1 =
71
+ * Update to address issue with subscriptions not occurring on order create "pending"
72
+
73
  = 1.1 =
74
  * Add the option to display an opt-in field on checkout
75
 
woocommerce-mailchimp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WooCommerce MailChimp
4
  Plugin URI: http://anderly.com/woocommerce-mailchimp
5
  Description: WooCommerce MailChimp provides simple MailChimp integration for WooCommerce.
6
- Version: 1.1
7
  Author: Adam Anderly
8
  Author URI: http://anderly.com
9
 
3
  Plugin Name: WooCommerce MailChimp
4
  Plugin URI: http://anderly.com/woocommerce-mailchimp
5
  Description: WooCommerce MailChimp provides simple MailChimp integration for WooCommerce.
6
+ Version: 1.1.1
7
  Author: Adam Anderly
8
  Author URI: http://anderly.com
9