Version Description
Download this release
Release Info
Developer | anderly |
Plugin | WooCommerce MailChimp |
Version | 2.1.1 |
Comparing to | |
See all releases |
Code changes from version 2.1.0 to 2.1.1
- includes/class-ss-wc-mailchimp-plugin.php +2 -2
- readme.txt +5 -2
- woocommerce-mailchimp.php +2 -2
includes/class-ss-wc-mailchimp-plugin.php
CHANGED
@@ -9,7 +9,7 @@ final class SS_WC_MailChimp_Plugin {
|
|
9 |
* Plugin version
|
10 |
* @var string
|
11 |
*/
|
12 |
-
private static $version = '2.1.
|
13 |
|
14 |
/**
|
15 |
* Plugin singleton instance
|
@@ -442,7 +442,7 @@ final class SS_WC_MailChimp_Plugin {
|
|
442 |
function add_mailchimp_settings( $settings ) {
|
443 |
|
444 |
if ( ! is_array( $settings ) ) {
|
445 |
-
$settings =
|
446 |
}
|
447 |
|
448 |
$settings[] = require_once( SS_WC_MAILCHIMP_DIR . 'includes/class-ss-wc-settings-mailchimp.php' );
|
9 |
* Plugin version
|
10 |
* @var string
|
11 |
*/
|
12 |
+
private static $version = '2.1.1';
|
13 |
|
14 |
/**
|
15 |
* Plugin singleton instance
|
442 |
function add_mailchimp_settings( $settings ) {
|
443 |
|
444 |
if ( ! is_array( $settings ) ) {
|
445 |
+
$settings = array();
|
446 |
}
|
447 |
|
448 |
$settings[] = require_once( SS_WC_MAILCHIMP_DIR . 'includes/class-ss-wc-settings-mailchimp.php' );
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: saintsystems, anderly
|
|
3 |
Donate link: http://ssms.us/hVdk
|
4 |
Tags: woocommerce, mailchimp
|
5 |
Requires at least: 3.5.1
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv3
|
9 |
|
10 |
Simple and flexible MailChimp integration for WooCommerce.
|
@@ -113,6 +113,9 @@ Also, if you enjoy using the software [we'd love it if you could give us a revie
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
116 |
#### 2.1.0 - April 26, 2017
|
117 |
- Added support for WooCommerce 3.0 changes.
|
118 |
- Added additional options for opt-in checkbox placement.
|
3 |
Donate link: http://ssms.us/hVdk
|
4 |
Tags: woocommerce, mailchimp
|
5 |
Requires at least: 3.5.1
|
6 |
+
Tested up to: 4.8
|
7 |
+
Stable tag: 2.1.1
|
8 |
License: GPLv3
|
9 |
|
10 |
Simple and flexible MailChimp integration for WooCommerce.
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
#### 2.1.1 - July 24, 2017
|
117 |
+
- Fix settings default for older PHP versions.
|
118 |
+
|
119 |
#### 2.1.0 - April 26, 2017
|
120 |
- Added support for WooCommerce 3.0 changes.
|
121 |
- Added additional options for opt-in checkbox placement.
|
woocommerce-mailchimp.php
CHANGED
@@ -5,11 +5,11 @@
|
|
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 |
* Text Domain: woocommerce-mailchimp
|
10 |
* Domain Path: languages
|
11 |
*
|
12 |
-
* Copyright: �
|
13 |
* License: GNU General Public License v3.0
|
14 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
*/
|
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.1
|
9 |
* Text Domain: woocommerce-mailchimp
|
10 |
* Domain Path: languages
|
11 |
*
|
12 |
+
* Copyright: � 2017 Saint Systems
|
13 |
* License: GNU General Public License v3.0
|
14 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
*/
|