Easy Forms for MailChimp - Version 6.3.22

Version Description

Download this release

Release Info

Developer yikesitskevin
Plugin Icon 128x128 Easy Forms for MailChimp
Version 6.3.22
Comparing to
See all releases

Code changes from version 6.3.21 to 6.3.22

public/classes/checkbox-integrations/class.comment_form-checkbox.php CHANGED
@@ -60,7 +60,7 @@
60
  *
61
  * @since 6.0.0
62
  **/
63
- public function subscribe_from_comment( $comment_id , $comment_approved ) {
64
 
65
  // was sign-up checkbox checked?
66
  if ( $this->was_checkbox_checked( $this->type ) === false ) {
@@ -68,7 +68,7 @@
68
  }
69
 
70
  // is this a spam comment?
71
- if ( $comment_approved === 0 ) {
72
  return false;
73
  }
74
 
60
  *
61
  * @since 6.0.0
62
  **/
63
+ public function subscribe_from_comment( $comment_id, $comment_approved ) {
64
 
65
  // was sign-up checkbox checked?
66
  if ( $this->was_checkbox_checked( $this->type ) === false ) {
68
  }
69
 
70
  // is this a spam comment?
71
+ if ( $comment_approved === 'spam' ) {
72
  return false;
73
  }
74
 
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.8
7
- Stable tag: 6.3.21
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -268,6 +268,10 @@ Below you'll find a complete list of the hooks and filters available in Easy For
268
 
269
  == Changelog ==
270
 
 
 
 
 
271
  = Easy Forms for MailChimp 6.3.21 - June 22nd, 2017 =
272
  * Cleaned up some HTML on the form
273
  * Fixed an issue with comment integration subscriptions - the commenter's name will now populate the First Name field in your MailChimp list.
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.8
7
+ Stable tag: 6.3.22
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
268
 
269
  == Changelog ==
270
 
271
+
272
+ = Easy Forms for MailChimp 6.3.22 - June 23rd, 2017 =
273
+ * Fixed an issue with comment integration subscriptions - comments will now be spam checked correctly
274
+
275
  = Easy Forms for MailChimp 6.3.21 - June 22nd, 2017 =
276
  * Cleaned up some HTML on the form
277
  * Fixed an issue with comment integration subscriptions - the commenter's name will now populate the First Name field in your MailChimp list.
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.21
7
  * Author: YIKES, Inc.
8
  * Author URI: https://www.yikesplugins.com/
9
  * License: GPL-3.0+
@@ -43,7 +43,7 @@ if ( ! defined( 'WPINC' ) ) {
43
  * @since 6.1.3
44
  */
45
  if ( ! defined( 'YIKES_MC_VERSION' ) ) {
46
- define( 'YIKES_MC_VERSION' , '6.3.21' );
47
  }
48
 
49
  /**
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.22
7
  * Author: YIKES, Inc.
8
  * Author URI: https://www.yikesplugins.com/
9
  * License: GPL-3.0+
43
  * @since 6.1.3
44
  */
45
  if ( ! defined( 'YIKES_MC_VERSION' ) ) {
46
+ define( 'YIKES_MC_VERSION' , '6.3.22' );
47
  }
48
 
49
  /**