As of March 21st 2019, the Mailchimp for Shopify integration has been removed from the Shopify Marketplace. For existing connected users, the integration will remain in effect through May 12th.
View Mailchimp's official statement
Learn more about Mailchimp's changes to their integration with Shopify, instructions to sync your contact lists, and manual workarounds for marketing features.
The 'Form Action URL' setting of the Turbo theme will continue to function for adding email address submissions to a List on Mailchimp. We will keep you posted on the best next-steps for your email service integration as we learn more about how the integration with Shopify and Mailchimp will be affected.
MailChimp allows you to embed a form into your site, but the "Submit" button often doesn't appear by default because of how their code generator works.
In order for the "Submit" button to appear, you need to modify the code MailChimp provides you:
- Locate this block of code which populates the button:
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button" /></div>
- Remove
<div class="clear">
from the beginning of this code, and the</div>
from the end.
- Your final code should look like this:
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button" />