Version Description
- October 13, 2014 =
Fixes
- Notice in
class-mailchimp.php
when fetching lists from MailChimp.
Download this release
Release Info
Developer | DvanKooten |
Plugin | MailChimp for WordPress |
Version | 2.1.5 |
Comparing to | |
See all releases |
Code changes from version 2.1.4 to 2.1.5
- includes/class-mailchimp.php +0 -8
- mailchimp-for-wp.php +2 -2
- readme.txt +26 -11
includes/class-mailchimp.php
CHANGED
@@ -63,14 +63,6 @@ class MC4WP_MailChimp {
|
|
63 |
set_transient( 'mc4wp_mailchimp_lists', $lists, ( 24 * 3600 ) ); // 1 day
|
64 |
set_transient( 'mc4wp_mailchimp_lists_fallback', $lists, 1209600 ); // 2 weeks
|
65 |
|
66 |
-
// check options for unexisting lists
|
67 |
-
$form_opts = mc4wp_get_options( 'form ');
|
68 |
-
foreach( $form_opts['lists'] as $form_opts_key => $form_opts_list ) {
|
69 |
-
if( ! array_key_exists( $form_opts_list, $lists ) ) {
|
70 |
-
unset( $form_opts['lists'][$form_opts_key] );
|
71 |
-
}
|
72 |
-
}
|
73 |
-
|
74 |
return $lists;
|
75 |
} else {
|
76 |
// api request failed, get fallback data (with longer lifetime)
|
63 |
set_transient( 'mc4wp_mailchimp_lists', $lists, ( 24 * 3600 ) ); // 1 day
|
64 |
set_transient( 'mc4wp_mailchimp_lists_fallback', $lists, 1209600 ); // 2 weeks
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
return $lists;
|
67 |
} else {
|
68 |
// api request failed, get fallback data (with longer lifetime)
|
mailchimp-for-wp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: MailChimp for WordPress Lite
|
4 |
Plugin URI: https://mc4wp.com/
|
5 |
Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
|
6 |
-
Version: 2.1.
|
7 |
Author: Danny van Kooten
|
8 |
Author URI: http://dannyvankooten.com
|
9 |
Text Domain: mailchimp-for-wp
|
@@ -47,7 +47,7 @@ function mc4wp_load_plugin() {
|
|
47 |
}
|
48 |
|
49 |
// bootstrap the lite plugin
|
50 |
-
define( 'MC4WP_LITE_VERSION', '2.1.
|
51 |
define( 'MC4WP_LITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
52 |
define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );
|
3 |
Plugin Name: MailChimp for WordPress Lite
|
4 |
Plugin URI: https://mc4wp.com/
|
5 |
Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
|
6 |
+
Version: 2.1.5
|
7 |
Author: Danny van Kooten
|
8 |
Author URI: http://dannyvankooten.com
|
9 |
Text Domain: mailchimp-for-wp
|
47 |
}
|
48 |
|
49 |
// bootstrap the lite plugin
|
50 |
+
define( 'MC4WP_LITE_VERSION', '2.1.5' );
|
51 |
define( 'MC4WP_LITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
52 |
define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://mc4wp.com/
|
|
4 |
Tags: mailchimp,newsletter,optin,mailinglist,sign-up form,subscribe,form,shortcode,widget,checkbox,comment,buddypress,multisite,bbpress,woocommerce,easy digital downloads,contact form,contact form 7,events manager,comment form,registration form,captcha
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.0
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -47,18 +47,12 @@ Add sign-up checkboxes to *any* form on your website. The plugin offers built-in
|
|
47 |
|
48 |
**Translations**
|
49 |
|
50 |
-
The
|
51 |
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
- Brazilian (pt_BR) - [Felipe Scuissiatto](http://www.evonline.com.br/)
|
56 |
-
- German (de_DE) - [Jochen Gererstorfer](http://slotnerd.de/)
|
57 |
-
- Italian (it_IT) - [Gianpaolo Rolando](http://www.gianpaolorolando.eu/) & [Tiziano D'Angelo](http://www.dangelos.it/)
|
58 |
-
- Slovak (sk_SK) - [Henrich Koszegi](http://www.webworks.sk/)
|
59 |
-
- Hungarian (hu_HU) - Németh Balázs
|
60 |
|
61 |
-
If you want to help [translating the MailChimp for WordPress plugin](http://docs.mc4wp.com/article/41-translating-mailchimp-for-wordpress), head over to [translate.mc4wp.com](http://translate.mc4wp.com).
|
62 |
|
63 |
**More information**
|
64 |
|
@@ -234,6 +228,21 @@ Your theme probably does not support the necessary comment hook this plugin uses
|
|
234 |
|
235 |
Your theme folder can be found by browsing to `/wp-content/themes/your-theme-name/`.
|
236 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
== Screenshots ==
|
238 |
|
239 |
1. Simple or advanced sign-up forms that blend in with your theme.
|
@@ -247,6 +256,12 @@ Your theme folder can be found by browsing to `/wp-content/themes/your-theme-nam
|
|
247 |
|
248 |
== Changelog ==
|
249 |
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
= 2.1.4 - October 13, 2014 =
|
251 |
|
252 |
**Fixes**
|
4 |
Tags: mailchimp,newsletter,optin,mailinglist,sign-up form,subscribe,form,shortcode,widget,checkbox,comment,buddypress,multisite,bbpress,woocommerce,easy digital downloads,contact form,contact form 7,events manager,comment form,registration form,captcha
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 2.1.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
47 |
|
48 |
**Translations**
|
49 |
|
50 |
+
The plugin is fully translated into the following languages: English, Dutch, Spanish, Brazilian, German, Italian, Slovak and Hungarian.
|
51 |
|
52 |
+
The [MailChimp for WordPress translations](https://wordpress.org/plugins/mailchimp-for-wp/other_notes/) page lists all the wonderful people that helped translate the plugin.
|
53 |
+
|
54 |
+
Want to [translate the plugin into your own language](https://www.transifex.com/projects/p/mailchimp-for-wordpress/)?
|
|
|
|
|
|
|
|
|
|
|
55 |
|
|
|
56 |
|
57 |
**More information**
|
58 |
|
228 |
|
229 |
Your theme folder can be found by browsing to `/wp-content/themes/your-theme-name/`.
|
230 |
|
231 |
+
== Translations ==
|
232 |
+
|
233 |
+
The MailChimp for WordPress plugin is translated into the following languages.
|
234 |
+
|
235 |
+
- English (en_US) - [Danny van Kooten](https://dannyvankooten.com)
|
236 |
+
- Dutch (nl_NL) - [Danny van Kooten](https://dannyvankooten.com)
|
237 |
+
- Spanish (es_ES) - [Paul Benitez ](http://www.administrandowp.com/) & [Enrique Pinto](http://www.thehivecluster.com/en)
|
238 |
+
- Brazilian (pt_BR) - [Felipe Scuissiatto](http://www.evonline.com.br/)
|
239 |
+
- German (de_DE) - [Jochen Gererstorfer](http://slotnerd.de/)
|
240 |
+
- Italian (it_IT) - [Gianpaolo Rolando](http://www.gianpaolorolando.eu/) & [Tiziano D'Angelo](http://www.dangelos.it/)
|
241 |
+
- Slovak (sk_SK) - [Henrich Koszegi](http://www.webworks.sk/)
|
242 |
+
- Hungarian (hu_HU) - Németh Balázs
|
243 |
+
|
244 |
+
It's easy to translate the plugin into your own language. Head over to the [translation project on Transifex](https://www.transifex.com/projects/p/mailchimp-for-wordpress/) and click on "[Help translate MailChimp for WordPress](https://www.transifex.com/signup/?join_project=mailchimp-for-wordpress)".
|
245 |
+
|
246 |
== Screenshots ==
|
247 |
|
248 |
1. Simple or advanced sign-up forms that blend in with your theme.
|
256 |
|
257 |
== Changelog ==
|
258 |
|
259 |
+
= 2.1.5 - October 13, 2014 =
|
260 |
+
|
261 |
+
**Fixes**
|
262 |
+
|
263 |
+
- Notice in `class-mailchimp.php` when fetching lists from MailChimp.
|
264 |
+
|
265 |
= 2.1.4 - October 13, 2014 =
|
266 |
|
267 |
**Fixes**
|