Forum Replies Created
-
AuthorPosts
-
DavidV
ParticipantYes that works great!
I didn’t try all the options but It works for a straight registration.
Thank you!
DavidV
ParticipantFound it! Mostly…
line 110 of swpm-mailchimp-action.php: (note the “swpm_”)
$membership_level = sanitize_text_field( $_POST[ ‘swpm_membership_level’ ] );
I’m now getting a 400 response from MailChimp – but that’s a different issue.
How does one go about getting this into the code base?
DavidV
ParticipantFound the start of the problem… Likes like my first guess was right. It’s not pulling the list name from the admin settings. From line 185+ of smtp-mailchimp-action.php:
SwpmLog::log_simple_debug( “[MailChimp] Debug data: ” . $mc_list_name . “|” . $email . “|” . $first_name . “|” . $last_name, true );
if ( empty( $mc_list_name ) ) {//This level has no mailchimp list name specified for it
return;
}It’s logging a blank $mc_list_name and then quietly returning.
I’ll dig in and report further findings.
DavidV
ParticipantThank you for the reply!
I checked both those (again – just in case 🙂 ). I even set up a new email account in case MailChimp was blocking a previously unsubscribed address. I haven’t dug too far into the code, but it looks like it’s not completing and not logging after a certain point.
-
AuthorPosts