Version Description
Download this release
Release Info
Developer | fmixell |
Plugin | Easy Forms for MailChimp |
Version | 6.5.5 |
Comparing to | |
See all releases |
Code changes from version 6.5.4 to 6.5.5
public/partials/shortcodes/process/process_form_submission.php
CHANGED
@@ -188,6 +188,7 @@ if ( is_wp_error( $member_exists ) || $double_optin_resubscribe === true ) {
|
|
188 |
// causes Mailchimp to send them a confirmation email. This is the only way Mailchimp will
|
189 |
// allow us to re-subscribe the user.
|
190 |
$was_unsubscribed = is_array( $member_exists ) && isset( $member_exists['status'] ) && $member_exists['status'] === 'unsubscribed';
|
|
|
191 |
|
192 |
if ( $double_optin === 1 || $was_unsubscribed === true ) {
|
193 |
|
188 |
// causes Mailchimp to send them a confirmation email. This is the only way Mailchimp will
|
189 |
// allow us to re-subscribe the user.
|
190 |
$was_unsubscribed = is_array( $member_exists ) && isset( $member_exists['status'] ) && $member_exists['status'] === 'unsubscribed';
|
191 |
+
$was_unsubscribed = apply_filters( 'yikes_mailchimp_single_resubscribe', $was_unsubscribed );
|
192 |
|
193 |
if ( $double_optin === 1 || $was_unsubscribed === true ) {
|
194 |
|
public/partials/shortcodes/process/process_form_submission_ajax.php
CHANGED
@@ -156,6 +156,7 @@ if ( is_wp_error( $member_exists ) || $double_optin_resubscribe === true ) {
|
|
156 |
// causes Mailchimp to send them a confirmation email. This is the only way Mailchimp will
|
157 |
// allow us to re-subscribe the user.
|
158 |
$was_unsubscribed = is_array( $member_exists ) && isset( $member_exists['status'] ) && $member_exists['status'] === 'unsubscribed';
|
|
|
159 |
|
160 |
if ( $double_optin === 1 || $was_unsubscribed === true ) {
|
161 |
|
156 |
// causes Mailchimp to send them a confirmation email. This is the only way Mailchimp will
|
157 |
// allow us to re-subscribe the user.
|
158 |
$was_unsubscribed = is_array( $member_exists ) && isset( $member_exists['status'] ) && $member_exists['status'] === 'unsubscribed';
|
159 |
+
$was_unsubscribed = apply_filters( 'yikes_mailchimp_single_resubscribe', $was_unsubscribed );
|
160 |
|
161 |
if ( $double_optin === 1 || $was_unsubscribed === true ) {
|
162 |
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: yikesinc, eherman24, liljimmi, JPry, yikesitskevin
|
|
3 |
Donate link: https://yikesplugins.com/?utm_source=wp_plugin_repo&utm_medium=donate_link&utm_campaign=easy_forms_for_mailchimp
|
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: 5.
|
7 |
Requires PHP: 5.2.13
|
8 |
-
Stable tag: 6.5.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
3 |
Donate link: https://yikesplugins.com/?utm_source=wp_plugin_repo&utm_medium=donate_link&utm_campaign=easy_forms_for_mailchimp
|
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: 5.3
|
7 |
Requires PHP: 5.2.13
|
8 |
+
Stable tag: 6.5.5
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
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.5.
|
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.5.
|
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.5.5
|
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.5.5' );
|
47 |
}
|
48 |
|
49 |
/**
|