• Resolved ivethpetrova

    (@ivethpetrova)


    Hi,

    We have installed your plugin and want to use it on all our website forms, so that people can subscribe for our marketing newsletters.
    But it does not send contacts at all to Mailchimp. I tried several settings but it still does not work. Can you help?

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Hi @ivethpetrova,

    All of our integrations use the double opt-in method by default. Are you trying to subscribe with real email addresses? Are you not receiving MailChimp’s confirmation email?

    Let me know.

    Cheers,
    Kevin.

    Thread Starter ivethpetrova

    (@ivethpetrova)

    Hi,

    Now I see the issue. So it should work. How can I modify the email for the double opt-in? And the manage preferences part? Thanks, you are really helpful.

    Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Hello,

    If you want to use single opt-in for our checkbox integrations, you have to use a filter like this:

    add_filter( 'yikes-mailchimp-checkbox-integration-body', 'set_integrations_to_single_optin', 10, 2 );
    function set_integrations_to_single_optin( $request_body, $integration_type ) {
    	$request_body['status_if_new'] = 'subscribed';
    	$request_body['status']        = 'subscribed';
    
    	return $request_body;
    }

    Are you familiar with adding custom PHP code to your website?

    Let me know if you need help applying this code.

    Cheers,
    Kevin.

    Thread Starter ivethpetrova

    (@ivethpetrova)

    Yes, single opt-in will be the best. Just let us know where we need to put this code.
    Can I change the confirmation email the person will receive for the subscription?

    Plugin Contributor yikesitskevin

    (@yikesitskevin)

    The code should go into your child theme’s functions.php file. If you’re not using a child theme, then the best place is in your theme’s functions.php file or by using a plugin like My Custom Functions.

    Which confirmation email are you referring to? Our plugin has no control over the emails sent from MailChimp. You’ll have to set these up in MailChimp. I know they allow you to customize some emails but not all of them.

    Plugin Contributor Tracy Levesque

    (@liljimmi)

    ?????? YIKES, Inc. Co-Owner

    Hello @ivethpetrova,

    Please let us know if you still need help with this.

    Thank you,
    -Tracy

    Plugin Contributor Tracy Levesque

    (@liljimmi)

    ?????? YIKES, Inc. Co-Owner

    Hello @ivethpetrova,

    We haven’t heard back from you in awhile so I am going to close out this ticket.

    If you need more help, please reopen it and we will be happy to help you.

    Thank you!
    -Tracy

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Plugin does nto send contacts to Mailchimp’ is closed to new replies.