Version Description
March 3rd, 2015 =
Fixed: tinyMCE error thrown when saving settings page, ultimately preventing the ability to store the API key.
Download this release
Release Info
Developer | eherman24 |
Plugin | Easy Forms for MailChimp |
Version | 5.4.1 |
Comparing to | |
See all releases |
Code changes from version 5.4 to 5.4.1
- pages/options.php +0 -1
- readme.txt +9 -2
- yikes-inc-easy-mailchimp-extender.php +2 -2
pages/options.php
CHANGED
@@ -39,7 +39,6 @@ jQuery(document).ready(function ($) {
|
|
39 |
$('#yks-mailchimp-form').submit(function (e) {
|
40 |
// Make sure the api key exists
|
41 |
if (blankFieldCheck()) {
|
42 |
-
tinyMCE.triggerSave();
|
43 |
$('#yks-status').slideUp('fast');
|
44 |
$.ajax({
|
45 |
type: 'POST',
|
39 |
$('#yks-mailchimp-form').submit(function (e) {
|
40 |
// Make sure the api key exists
|
41 |
if (blankFieldCheck()) {
|
|
|
42 |
$('#yks-status').slideUp('fast');
|
43 |
$.ajax({
|
44 |
type: 'POST',
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: yikesinc, hiwhatsup, liljimmi, eherman24, seriouslysean
|
|
3 |
Donate link: http://yikesinc.com
|
4 |
Tags: mailchimp, marketing, email, mailing lists, newsletter, sign up, forms, sign up form
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 4.1
|
7 |
-
Stable tag: 5.4
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Easy MailChimp Forms allows you to painlessly add MailChimp sign up forms to your WordPress site and track user activity with interactive reports.
|
@@ -835,6 +835,10 @@ These functions should be used in conjunction with the `yikes_mc_get_form_data`
|
|
835 |
|
836 |
== Changelog ==
|
837 |
|
|
|
|
|
|
|
|
|
838 |
= 5.4 - March 2nd, 2015 =
|
839 |
|
840 |
* Enhancement: Re-bundled unaltered MailChimp API wrapper class file, and added appropriate class check to prevent conflicts with other MailChimp plugins (Gravity Forms etc.)
|
@@ -1123,6 +1127,9 @@ These functions should be used in conjunction with the `yikes_mc_get_form_data`
|
|
1123 |
|
1124 |
== Upgrade Notice ==
|
1125 |
|
|
|
|
|
|
|
1126 |
= 5.4 - March 2nd, 2015 =
|
1127 |
* Enhancement: Re-bundled unaltered MailChimp API wrapper class file, and added appropriate class check to prevent conflicts with other MailChimp plugins (Gravity Forms etc.)
|
1128 |
* Enhancement: Removed the WYSIWYG editor from the options page. This caused issues for some users who were unable to validate the MailChimp API key.
|
3 |
Donate link: http://yikesinc.com
|
4 |
Tags: mailchimp, marketing, email, mailing lists, newsletter, sign up, forms, sign up form
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 4.1.1
|
7 |
+
Stable tag: 5.4.1
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Easy MailChimp Forms allows you to painlessly add MailChimp sign up forms to your WordPress site and track user activity with interactive reports.
|
835 |
|
836 |
== Changelog ==
|
837 |
|
838 |
+
= 5.4.1 - March 3rd, 2015 =
|
839 |
+
|
840 |
+
* Fixed: tinyMCE error thrown when saving settings page, ultimately preventing the ability to store the API key.
|
841 |
+
|
842 |
= 5.4 - March 2nd, 2015 =
|
843 |
|
844 |
* Enhancement: Re-bundled unaltered MailChimp API wrapper class file, and added appropriate class check to prevent conflicts with other MailChimp plugins (Gravity Forms etc.)
|
1127 |
|
1128 |
== Upgrade Notice ==
|
1129 |
|
1130 |
+
= 5.4.1 - March 3rd, 2015 =
|
1131 |
+
* Fixed: tinyMCE error thrown when saving settings page, ultimately preventing the ability to store the API key.
|
1132 |
+
|
1133 |
= 5.4 - March 2nd, 2015 =
|
1134 |
* Enhancement: Re-bundled unaltered MailChimp API wrapper class file, and added appropriate class check to prevent conflicts with other MailChimp plugins (Gravity Forms etc.)
|
1135 |
* Enhancement: Removed the WYSIWYG editor from the options page. This caused issues for some users who were unable to validate the MailChimp API key.
|
yikes-inc-easy-mailchimp-extender.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Easy MailChimp Forms
|
5 |
Plugin URI: http://www.yikesinc.com/services/yikes-inc-easy-mailchimp-extender/
|
6 |
Description: Mailchimp integration in the form of a shortcode, php snippet or widget. Now track account status, campaign stats, view subscribers and so much more!
|
7 |
-
Version: 5.4
|
8 |
Author: YIKES Inc
|
9 |
Author URI: http://yikesinc.com
|
10 |
License: GPL3
|
@@ -30,7 +30,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
30 |
|
31 |
/** Configuration **/
|
32 |
if(!defined('YKSEME_DEBUG')) define('YKSEME_DEBUG', false);
|
33 |
-
if(!defined('YKSEME_VERSION_CURRENT')) define('YKSEME_VERSION_CURRENT', '5.4');
|
34 |
if(!defined('YKSEME_REQ_PHP')) define('YKSEME_REQ_PHP', '5.0');
|
35 |
if(!defined('YKSEME_AUTHOR')) define('YKSEME_AUTHOR', 'YIKES Inc');
|
36 |
if(!defined('YKSEME_SITE')) define('YKSEME_SITE', site_url().'/');
|
4 |
Plugin Name: Easy MailChimp Forms
|
5 |
Plugin URI: http://www.yikesinc.com/services/yikes-inc-easy-mailchimp-extender/
|
6 |
Description: Mailchimp integration in the form of a shortcode, php snippet or widget. Now track account status, campaign stats, view subscribers and so much more!
|
7 |
+
Version: 5.4.1
|
8 |
Author: YIKES Inc
|
9 |
Author URI: http://yikesinc.com
|
10 |
License: GPL3
|
30 |
|
31 |
/** Configuration **/
|
32 |
if(!defined('YKSEME_DEBUG')) define('YKSEME_DEBUG', false);
|
33 |
+
if(!defined('YKSEME_VERSION_CURRENT')) define('YKSEME_VERSION_CURRENT', '5.4.1');
|
34 |
if(!defined('YKSEME_REQ_PHP')) define('YKSEME_REQ_PHP', '5.0');
|
35 |
if(!defined('YKSEME_AUTHOR')) define('YKSEME_AUTHOR', 'YIKES Inc');
|
36 |
if(!defined('YKSEME_SITE')) define('YKSEME_SITE', site_url().'/');
|