Version Description
Download this release
Release Info
Developer | yikesitskevin |
Plugin | Easy Forms for MailChimp |
Version | 6.3.17 |
Comparing to | |
See all releases |
Code changes from version 6.3.16 to 6.3.17
admin/class-yikes-inc-easy-mailchimp-extender-admin.php
CHANGED
@@ -1473,6 +1473,13 @@ class Yikes_Inc_Easy_Mailchimp_Forms_Admin {
|
|
1473 |
}
|
1474 |
$installed_addons = get_option( 'yikes-easy-mc-active-addons' , array() );
|
1475 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1476 |
// sort our addons array alphabetically so they appear in similar orders across all sites
|
1477 |
asort( $installed_addons );
|
1478 |
?>
|
1473 |
}
|
1474 |
$installed_addons = get_option( 'yikes-easy-mc-active-addons' , array() );
|
1475 |
|
1476 |
+
// Make sure we don't have any duplicates by mistake
|
1477 |
+
$installed_addons = array_unique( $installed_addons );
|
1478 |
+
|
1479 |
+
// v1.2.6 of popups plugin had a bug that expanded the array indefinitely, so let's trim it in one place here.
|
1480 |
+
// This can be removed within a few weeks
|
1481 |
+
update_option( 'yikes-easy-mc-active-addons' , $installed_addons );
|
1482 |
+
|
1483 |
// sort our addons array alphabetically so they appear in similar orders across all sites
|
1484 |
asort( $installed_addons );
|
1485 |
?>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://yikesplugins.com/?utm_source=wp_plugin_repo&utm_medium=dona
|
|
4 |
Tags: MailChimp, MailChimp forms, MailChimp lists, opt-in forms, sign up form, MailChimp, email, forms, mailing lists, marketing, newsletter, sign up
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.7.4
|
7 |
-
Stable tag: 6.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -260,6 +260,9 @@ Below you'll find a complete list of the hooks and filters available in Easy For
|
|
260 |
|
261 |
== Changelog ==
|
262 |
|
|
|
|
|
|
|
263 |
= Easy Forms for MailChimp 6.3.16 - April 26th, 2017 =
|
264 |
* Quick fix to 6.3.15 - forgot to add a couple of files that handle the "Description Above Field" when a form field/interest group is initially added to the form.
|
265 |
|
4 |
Tags: MailChimp, MailChimp forms, MailChimp lists, opt-in forms, sign up form, MailChimp, email, forms, mailing lists, marketing, newsletter, sign up
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.7.4
|
7 |
+
Stable tag: 6.3.17
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
260 |
|
261 |
== Changelog ==
|
262 |
|
263 |
+
= Easy Forms for MailChimp 6.3.17 - May 1st, 2017 =
|
264 |
+
* Added a quick fix for the Addon Settings list
|
265 |
+
|
266 |
= Easy Forms for MailChimp 6.3.16 - April 26th, 2017 =
|
267 |
* Quick fix to 6.3.15 - forgot to add a couple of files that handle the "Description Above Field" when a form field/interest group is initially added to the form.
|
268 |
|
yikes-inc-easy-mailchimp-extender.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Easy Forms for MailChimp
|
4 |
* Plugin URI: https://yikesplugins.com/plugin/easy-forms-for-mailchimp/
|
5 |
* Description: The ultimate MailChimp WordPress plugin. Easily build <strong>unlimited forms for your MailChimp lists</strong>, add them to your site and track subscriber activity. To get started, go to the settings page and enter your <a href="https://yikesplugins.com/support/knowledge-base/finding-your-mailchimp-api-key/" target="_blank">MailChimp API key</a>.
|
6 |
-
* Version: 6.3.
|
7 |
* Author: YIKES, Inc.
|
8 |
* Author URI: https://www.yikesplugins.com/
|
9 |
* License: GPL-3.0+
|
@@ -42,7 +42,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
42 |
* @since 6.1.3
|
43 |
*/
|
44 |
if ( ! defined( 'YIKES_MC_VERSION' ) ) {
|
45 |
-
define( 'YIKES_MC_VERSION' , '6.3.
|
46 |
}
|
47 |
|
48 |
/**
|
3 |
* Plugin Name: Easy Forms for MailChimp
|
4 |
* Plugin URI: https://yikesplugins.com/plugin/easy-forms-for-mailchimp/
|
5 |
* Description: The ultimate MailChimp WordPress plugin. Easily build <strong>unlimited forms for your MailChimp lists</strong>, add them to your site and track subscriber activity. To get started, go to the settings page and enter your <a href="https://yikesplugins.com/support/knowledge-base/finding-your-mailchimp-api-key/" target="_blank">MailChimp API key</a>.
|
6 |
+
* Version: 6.3.17
|
7 |
* Author: YIKES, Inc.
|
8 |
* Author URI: https://www.yikesplugins.com/
|
9 |
* License: GPL-3.0+
|
42 |
* @since 6.1.3
|
43 |
*/
|
44 |
if ( ! defined( 'YIKES_MC_VERSION' ) ) {
|
45 |
+
define( 'YIKES_MC_VERSION' , '6.3.17' );
|
46 |
}
|
47 |
|
48 |
/**
|