I’m having problems with the mailchimp integration within my site, in the configuration panel all seems to be working, I got the mailchimp list linked using the API Key but when I submit the form I’m not getting the info into the mailchimp list.
Had a similar problem in the past with the contact form and I added this code to the functions.php file.
function change_cf_from() {
return “wordpress@YOURWEBSITE.com”;
}
add_filter(‘avf_form_from’, ‘change_cf_from’, 10);
After that, the contact form started to work fine but the mailchimp form is still not getting any info into the audience list.
Any help ?