Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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!!

    #1119543

    Hey adxdigitalmarketing,

    Yes, you’ll need to use a plugin. Here is an overview for you

    Best regards,
    Victoria

    #1119746

    Okay 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

    #1119987

    Hi adxdigitalmarketing,

    Can you please make that account admin?

    Best regards,
    Victoria

    #1120039

    Hi Victoria, you have access now.
    Thanks

    #1120256

    Hi adxdigitalmarketing,

    Please try switching the the Classic editor in the theme options and disable caching plugin and see if preview works.

    Best regards,
    Victoria

    #1121101

    Hi Victoria,

    I have done both of those things but it still isn’t working.
    Any other suggestions?

    Thanks

    #1121461

    Hi,

    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

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.