MailChimp Subscriber Pop Up

Hi there,

I’m wanting to add a MailChimp pop up subscriber form to our website but am unsure where I need to put the code? MailChimp just says to copy/paste the code and embed on the website… Any ideas where I need to do this?

Thank in advanced :slight_smile:
Amy

1 Like

Hi There,

Do you want to display the popup form for all the pages?

You have to setup a child theme first:

https://theme.co/apex/forum/t/setup-how-to-setup-child-themes/57

After that add this code under functions.php file locates in your child theme:

add_action( 'wp_footer', 'print_mailchimp_popup' );
function print_mailchimp_popup(){
	?>
	<script type="text/javascript" src="//downloads.mailchimp.com/js/signup-forms/popup/unique-methods/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script><script type="text/javascript">window.dojoRequire(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us7.list-manage.com","uuid":"05caf4abe427a3eee8cb53990","lid":"de59be9e7a","uniqueMethods":true}) })</script>
	<?php
}

Hope that helps and thank you for understanding.

Ok thanks for that. Yes I want the pop up on all pages… Hmmm I don’t really want to work in the code…
Do you have any advice for an easier way to have a subscribe pop up that works with mailchimp?

Thanks again :slight_smile:
Amy

Hi Amy,

You can try convertplus plugin. Please refer to the links below for your guide on how to set it upwith mailchimp.

https://www.convertplug.com/plus/docs/

Hope that helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.