Version Description
Download this release
Release Info
Developer | eherman24 |
Plugin | Easy Forms for MailChimp |
Version | 6.0.4.6 |
Comparing to | |
See all releases |
Code changes from version 6.0.4.5 to 6.0.4.6
includes/class-yikes-inc-easy-mailchimp-extender.php
CHANGED
@@ -62,7 +62,7 @@ class Yikes_Inc_Easy_Mailchimp_Extender {
|
|
62 |
*/
|
63 |
public function __construct() {
|
64 |
$this->yikes_inc_easy_mailchimp_extender = 'yikes-inc-easy-mailchimp-extender';
|
65 |
-
$this->version = '6.0.4.
|
66 |
$this->load_dependencies();
|
67 |
$this->define_admin_hooks();
|
68 |
$this->define_public_hooks();
|
62 |
*/
|
63 |
public function __construct() {
|
64 |
$this->yikes_inc_easy_mailchimp_extender = 'yikes-inc-easy-mailchimp-extender';
|
65 |
+
$this->version = '6.0.4.6';
|
66 |
$this->load_dependencies();
|
67 |
$this->define_admin_hooks();
|
68 |
$this->define_public_hooks();
|
public/partials/shortcodes/process/process_form_submission.php
CHANGED
@@ -140,8 +140,7 @@ if ( ! isset( $_POST['yikes_easy_mc_new_subscriber'] ) || ! wp_verify_nonce( $_P
|
|
140 |
'email' => array( 'email' => sanitize_email( $_POST['EMAIL'] ) ),
|
141 |
'merge_vars' => $merge_variables,
|
142 |
'double_optin' => $form_settings['optin_settings']['optin'],
|
143 |
-
|
144 |
-
'update_existing' => 0,
|
145 |
'send_welcome' => $form_settings['optin_settings']['send_welcome_email'],
|
146 |
'replace_interests' => ( isset( $form_settings['submission_settings']['replace_interests'] ) ) ? $form_settings['submission_settings']['replace_interests'] : 1, // defaults to replace
|
147 |
), $form_id, $_POST['yikes-mailchimp-associated-list-id'], $_POST['EMAIL'] ) );
|
140 |
'email' => array( 'email' => sanitize_email( $_POST['EMAIL'] ) ),
|
141 |
'merge_vars' => $merge_variables,
|
142 |
'double_optin' => $form_settings['optin_settings']['optin'],
|
143 |
+
'update_existing' => $form_settings['optin_settings']['update_existing_user'],
|
|
|
144 |
'send_welcome' => $form_settings['optin_settings']['send_welcome_email'],
|
145 |
'replace_interests' => ( isset( $form_settings['submission_settings']['replace_interests'] ) ) ? $form_settings['submission_settings']['replace_interests'] : 1, // defaults to replace
|
146 |
), $form_id, $_POST['yikes-mailchimp-associated-list-id'], $_POST['EMAIL'] ) );
|
public/partials/shortcodes/process/process_form_submission_ajax.php
CHANGED
@@ -142,8 +142,7 @@
|
|
142 |
'email' => array( 'email' => sanitize_email( $data['EMAIL'] ) ),
|
143 |
'merge_vars' => $merge_variables,
|
144 |
'double_optin' => $optin_settings['optin'],
|
145 |
-
|
146 |
-
'update_existing' => 0,
|
147 |
'send_welcome' => $optin_settings['send_welcome_email'],
|
148 |
'replace_interests' => ( isset( $submission_settings['replace_interests'] ) ) ? $submission_settings['replace_interests'] : 1, // defaults to replace
|
149 |
), $form, $list_id, $data['EMAIL'] ) );
|
142 |
'email' => array( 'email' => sanitize_email( $data['EMAIL'] ) ),
|
143 |
'merge_vars' => $merge_variables,
|
144 |
'double_optin' => $optin_settings['optin'],
|
145 |
+
'update_existing' => $optin_settings['update_existing_user'],
|
|
|
146 |
'send_welcome' => $optin_settings['send_welcome_email'],
|
147 |
'replace_interests' => ( isset( $submission_settings['replace_interests'] ) ) ? $submission_settings['replace_interests'] : 1, // defaults to replace
|
148 |
), $form, $list_id, $data['EMAIL'] ) );
|
readme.txt
CHANGED
@@ -1 +1 @@
|
|
1 |
-
=== Easy Forms for MailChimp ===
|
2 |
-
added `stripslashes()` to the following settings fields :
|
3 |
-
Updated readme FAQ section
|
4 |
-
added `stripslashes()` to the following settings fields :
|
5 |
-
Updated readme FAQ section
|
6 |
-
added `stripslashes()` to the following settings fields :
|
7 |
-
Updated readme FAQ section
|
8 |
-
added `stripslashes()` to the following settings fields :
|
9 |
-
Updated readme FAQ section
|
1 |
+
=== Easy Forms for MailChimp ===
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
yikes-inc-easy-mailchimp-extender.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Easy Forms for MailChimp by YIKES
|
4 |
* Plugin URI: http://www.yikesinc.com/services/yikes-inc-easy-mailchimp-extender/
|
5 |
* Description: YIKES Easy Forms for MailChimp links your site to MailChimp and allows you to generate and display mailing list opt-in forms anywhere on your site with ease.
|
6 |
-
* Version: 6.0.4.
|
7 |
* Author: YIKES
|
8 |
* Author URI: http://www.yikesinc.com/
|
9 |
* License: GPL-3.0+
|
3 |
* Plugin Name: Easy Forms for MailChimp by YIKES
|
4 |
* Plugin URI: http://www.yikesinc.com/services/yikes-inc-easy-mailchimp-extender/
|
5 |
* Description: YIKES Easy Forms for MailChimp links your site to MailChimp and allows you to generate and display mailing list opt-in forms anywhere on your site with ease.
|
6 |
+
* Version: 6.0.4.6
|
7 |
* Author: YIKES
|
8 |
* Author URI: http://www.yikesinc.com/
|
9 |
* License: GPL-3.0+
|