Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #707034

    I removed the First Name and Last Name fields from my MailChimp Form using this Quick CSS code:

    #element_avia_1_1, #element_avia_2_1 {
        display: none;
    }

    However, this also disables the first two elements from the Contact Form. I’m cheating a solution by duplicating the Name and Email fields, but I’d be interested in something more elegant.

    Thanks!

    #707839

    Hey sabrinarubli,

    Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then edit your element and give it a custom CSS class and change your code to following one

    .your-custom-class #element_avia_1_1, .your-custom-class #element_avia_2_1 {
        display: none;
    }

    Best regards,
    Yigit

    #708126

    The code you provided works except when there are two forms on one page. For example, here.

    #708237

    Hi,

    Adding custom class to your elements and targeting them that way should apply the changes only on that element with custom class. Please elaborate on the changes you would like to make and post temporary admin logins here privately so we can provide you more accurate solution.

    Best regards,
    Yigit

    #708261

    The footer on my site includes a MailChimp signup form. Using the instructions you gave above, the form displays properly on almost every page with only the Email field and a submit button.

    However, on the contact page (which has a Contact Form), the mailchimp form in the footer displays the First Name and Last Name fields, when neither of these fields are displayed on any other page on the site, thanks to the quick css code you gave me.

    Any ideas?

    #709107

    Hey!

    I edited the contact page but I can’t find the “subscribe” section in the advance layout builder. How did you add it?

    Cheers!
    Ismael

    #711920

    The subscribe section actually lives in the footer.

    #712903

    Hi!

    Try to add this code in Quick CSS (this code hides the first name and last name of the subscribe section, this is only specific to your contact page):

    .page-id-3931 .mc_subscribe #element_avia_1_2, .page-id-3931 .mc_subscribe #element_avia_2_2 {
        display: none;
    }

    Let us know if it works :)

    Best regards,
    Nikko

    #713456

    Nailed it. Thanks, Nikko.

    #713470

    Hi!

    Glad we could help :)

    Regards,
    Nikko

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