Tagged: MailChimp
-
AuthorPosts
-
July 17, 2019 at 3:01 am #1119323
Hi,
I have multiple lists within my mailchimp account and would like visitors to the website to select which category they require which links their email to the corresponding mailchimp email list.
For example:Name: ________________ Email: ________________
Please select:
O Builder (links to builder mailchimp list)
O Architect (links to architect mailchimp list)SUBMIT
Is there a way to add checkboxes or a dropdown menu to the mailchimp sign up function or will i need a plugin?
If so can you advise the best plugin for this please.Thanks!!
July 17, 2019 at 11:48 am #1119543Hey adxdigitalmarketing,
Yes, you’ll need to use a plugin. Here is an overview for you
Best regards,
VictoriaJuly 18, 2019 at 1:00 am #1119746Okay thanks.
From what I’ve researched there doesn’t seem to be a function in any plugin that allows you to save emails to two different audience lists.Another issue I’m having is the the “preview” button on the pages editor page doesn’t show the updates made to the page I’m working on. It only shows the original. Even after clicking update.
Login details in private content.
Thanks
July 18, 2019 at 8:07 pm #1119987Hi adxdigitalmarketing,
Can you please make that account admin?
Best regards,
VictoriaJuly 19, 2019 at 12:07 am #1120039Hi Victoria, you have access now.
ThanksJuly 19, 2019 at 4:32 pm #1120256Hi adxdigitalmarketing,
Please try switching the the Classic editor in the theme options and disable caching plugin and see if preview works.
Best regards,
VictoriaJuly 23, 2019 at 7:12 am #1121101Hi Victoria,
I have done both of those things but it still isn’t working.
Any other suggestions?Thanks
July 24, 2019 at 11:21 am #1121461Hi,
Maybe you can add two mailchimp element for each list in the same section — hide the other using css. In a separate code or text block, place a check box for each category — make sure that the first box is already checked and then we can add a script that will toggle the appropriate list based on the selected checkbox like so:
$('#form :checkbox').change(function() { if (this.checked) { // the checkbox is now checked } else { // the checkbox is now no longer checked } });
// https://stackoverflow.com/questions/3442322/jquery-checkbox-event-handling
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.