Version Description
Download this release
Release Info
Developer | anderly |
Plugin | WooCommerce MailChimp |
Version | 2.1.12 |
Comparing to | |
See all releases |
Code changes from version 2.1.11 to 2.1.12
- includes/class-ss-wc-mailchimp-plugin.php +1 -1
- readme.txt +5 -1
- woocommerce-mailchimp.php +3 -3
- wpml-config.xml +2 -4
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.1.
|
19 |
|
20 |
/**
|
21 |
* Plugin singleton instance
|
15 |
*
|
16 |
* @var string
|
17 |
*/
|
18 |
+
private static $version = '2.1.12';
|
19 |
|
20 |
/**
|
21 |
* Plugin singleton instance
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: woocommerce, mailchimp
|
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 4.9.5
|
7 |
WC tested up to: 3.3.1
|
8 |
-
Stable tag: 2.1.
|
9 |
License: GPLv3
|
10 |
|
11 |
Simple and flexible MailChimp integration for WooCommerce.
|
@@ -114,6 +114,10 @@ Also, if you enjoy using the software [we'd love it if you could give us a revie
|
|
114 |
|
115 |
== Changelog ==
|
116 |
|
|
|
|
|
|
|
|
|
117 |
#### 2.1.11 - April 27, 2018
|
118 |
- Fix erroneous error saying can't load lists when no interest groups for list.
|
119 |
|
5 |
Requires at least: 3.5.1
|
6 |
Tested up to: 4.9.5
|
7 |
WC tested up to: 3.3.1
|
8 |
+
Stable tag: 2.1.12
|
9 |
License: GPLv3
|
10 |
|
11 |
Simple and flexible MailChimp integration for WooCommerce.
|
114 |
|
115 |
== Changelog ==
|
116 |
|
117 |
+
#### 2.1.12 - May 22, 2018
|
118 |
+
- WPML Opt-in label fix.
|
119 |
+
- Plugin now loads after `plugins_loaded` action hook.
|
120 |
+
|
121 |
#### 2.1.11 - April 27, 2018
|
122 |
- Fix erroneous error saying can't load lists when no interest groups for list.
|
123 |
|
woocommerce-mailchimp.php
CHANGED
@@ -5,12 +5,12 @@
|
|
5 |
* Description: WooCommerce MailChimp provides simple MailChimp integration for WooCommerce.
|
6 |
* Author: Saint Systems
|
7 |
* Author URI: https://www.saintsystems.com
|
8 |
-
* Version: 2.1.
|
9 |
* WC tested up to: 3.3.1
|
10 |
* Text Domain: woocommerce-mailchimp
|
11 |
* Domain Path: languages
|
12 |
*
|
13 |
-
* Copyright: � 2018 Saint Systems
|
14 |
* License: GNU General Public License v3.0
|
15 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
16 |
*/
|
@@ -38,4 +38,4 @@ function SSWCMC() {
|
|
38 |
}
|
39 |
|
40 |
// Get WooCommerce Mailchimp Running.
|
41 |
-
SSWCMC
|
5 |
* Description: WooCommerce MailChimp provides simple MailChimp integration for WooCommerce.
|
6 |
* Author: Saint Systems
|
7 |
* Author URI: https://www.saintsystems.com
|
8 |
+
* Version: 2.1.12
|
9 |
* WC tested up to: 3.3.1
|
10 |
* Text Domain: woocommerce-mailchimp
|
11 |
* Domain Path: languages
|
12 |
*
|
13 |
+
* Copyright: � 2018 Saint Systems
|
14 |
* License: GNU General Public License v3.0
|
15 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
16 |
*/
|
38 |
}
|
39 |
|
40 |
// Get WooCommerce Mailchimp Running.
|
41 |
+
add_action('plugins_loaded', 'SSWCMC', 11);
|
wpml-config.xml
CHANGED
@@ -1,7 +1,5 @@
|
|
1 |
<wpml-config>
|
2 |
<admin-texts>
|
3 |
-
<key name="
|
4 |
-
<key name="opt_in_label" />
|
5 |
-
</key>
|
6 |
</admin-texts>
|
7 |
-
</wpml-config>
|
1 |
<wpml-config>
|
2 |
<admin-texts>
|
3 |
+
<key name="ss_wc_mailchimp_opt_in_label" />
|
|
|
|
|
4 |
</admin-texts>
|
5 |
+
</wpml-config>
|