Version Description
February 17th, 2015 =
Fixed: Patched the error displayed below the opt-in forms when
display_yikes_mc_form_messagesis not defined.
Download this release
Release Info
| Developer | eherman24 |
| Plugin | |
| Version | 5.3.2 |
| Comparing to | |
| See all releases | |
Code changes from version 5.3.1 to 5.3.2
- readme.txt +10 -3
- templates/shortcode_form.php +4 -2
- yikes-inc-easy-mailchimp-extender.php +2 -2
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ 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.3.
|
| 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.
|
|
@@ -795,11 +795,15 @@ These functions should be used in conjunction with the `yikes_mc_get_form_data`
|
|
| 795 |
|
| 796 |
== Changelog ==
|
| 797 |
|
| 798 |
-
= 5.3.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 799 |
|
| 800 |
* Enhancement: Added new filter to allow users to change which role has access to the MailChimp administration pages ( `yks-mailchimp-user-role` ) ( check readme for example )
|
| 801 |
|
| 802 |
-
= 5.3 - January 11th,
|
| 803 |
|
| 804 |
* Enhancement: Added ability to move the success + error messages above or below the form based on a defined constant ( `display_yikes_mc_form_messages` [options: before/after] )
|
| 805 |
* Enhancement: Added new settings and the ability to show/hide * = required field , from the top of the forms, via the settings page
|
|
@@ -1065,6 +1069,9 @@ These functions should be used in conjunction with the `yikes_mc_get_form_data`
|
|
| 1065 |
|
| 1066 |
== Upgrade Notice ==
|
| 1067 |
|
|
|
|
|
|
|
|
|
|
| 1068 |
= 5.3.1 - January 13th, 2014 =
|
| 1069 |
* Enhancement: Added new filter to allow users to change which role has access to the MailChimp administration pages ( `yks-mailchimp-user-role` ) ( check readme for example )
|
| 1070 |
|
| 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.3.2
|
| 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.
|
| 795 |
|
| 796 |
== Changelog ==
|
| 797 |
|
| 798 |
+
= 5.3.2 - February 17th, 2015 =
|
| 799 |
+
|
| 800 |
+
* Fixed: Patched the error displayed below the opt-in forms when `display_yikes_mc_form_messages` is not defined.
|
| 801 |
+
|
| 802 |
+
= 5.3.1 - January 13th, 2015 =
|
| 803 |
|
| 804 |
* Enhancement: Added new filter to allow users to change which role has access to the MailChimp administration pages ( `yks-mailchimp-user-role` ) ( check readme for example )
|
| 805 |
|
| 806 |
+
= 5.3 - January 11th, 2015 =
|
| 807 |
|
| 808 |
* Enhancement: Added ability to move the success + error messages above or below the form based on a defined constant ( `display_yikes_mc_form_messages` [options: before/after] )
|
| 809 |
* Enhancement: Added new settings and the ability to show/hide * = required field , from the top of the forms, via the settings page
|
| 1069 |
|
| 1070 |
== Upgrade Notice ==
|
| 1071 |
|
| 1072 |
+
= 5.3.2 - February 17th, 2015 =
|
| 1073 |
+
* Fixed: Patched the error displayed below the opt-in forms when `display_yikes_mc_form_messages` is not defined.
|
| 1074 |
+
|
| 1075 |
= 5.3.1 - January 13th, 2014 =
|
| 1076 |
* Enhancement: Added new filter to allow users to change which role has access to the MailChimp administration pages ( `yks-mailchimp-user-role` ) ( check readme for example )
|
| 1077 |
|
templates/shortcode_form.php
CHANGED
|
@@ -383,8 +383,10 @@ jQuery(document).ready(function() {
|
|
| 383 |
// using the form ID set above
|
| 384 |
do_action( 'yks_mc_after_form_'.$form_id[1] );
|
| 385 |
|
| 386 |
-
if ( defined( 'display_yikes_mc_form_messages' )
|
|
|
|
| 387 |
<div class="yks-status" id="yks-status-<?php echo $list['id']; ?>" style="margin-top:0;"></div>
|
| 388 |
-
<?php }
|
|
|
|
| 389 |
|
| 390 |
</div>
|
| 383 |
// using the form ID set above
|
| 384 |
do_action( 'yks_mc_after_form_'.$form_id[1] );
|
| 385 |
|
| 386 |
+
if ( defined( 'display_yikes_mc_form_messages' ) ) {
|
| 387 |
+
if ( display_yikes_mc_form_messages == 'after' || display_yikes_mc_form_messages == 'append' ) { ?>
|
| 388 |
<div class="yks-status" id="yks-status-<?php echo $list['id']; ?>" style="margin-top:0;"></div>
|
| 389 |
+
<?php }
|
| 390 |
+
} ?>
|
| 391 |
|
| 392 |
</div>
|
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.3.
|
| 8 |
Author: YIKES Inc
|
| 9 |
Author URI: http://yikesinc.com
|
| 10 |
License: GPL2
|
|
@@ -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.3.
|
| 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.3.2
|
| 8 |
Author: YIKES Inc
|
| 9 |
Author URI: http://yikesinc.com
|
| 10 |
License: GPL2
|
| 30 |
|
| 31 |
/** Configuration **/
|
| 32 |
if(!defined('YKSEME_DEBUG')) define('YKSEME_DEBUG', false);
|
| 33 |
+
if(!defined('YKSEME_VERSION_CURRENT')) define('YKSEME_VERSION_CURRENT', '5.3.2');
|
| 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().'/');
|
