EvanHerman / yikes-inc-easy-mailchimp-extender

Easy Forms for MailChimp WordPress Plugin
http://yikesplugins.com
GNU General Public License v2.0
25 stars 28 forks source link

Hide "Select Area of Interest" #98

Closed NicoleBencomoCole closed 10 years ago

NicoleBencomoCole commented 10 years ago

Hi there-

We have a form that connects to the mailchimp account that emails out directly for the RSS feed. The form looks great except for one thing, on the bottom of the form there is a field that says "select area of interest". Since this form goes only one place and no selection is needed, how do I get rid or hide this part of the form (for at least the users)?

You can see the form at http://www.rittersprinting.com/client-resources/. Any help would be appreciated.

EvanHerman commented 10 years ago

Hey Cheateaues,

Thank you for bringing this to my attention. When building the interest group section I hadn't taken into consideration someone may only have one interest group associated with there lists.

What you can do , is simply hide that input field using CSS. This will prevent it from ever being displayed to the user. Something as simple as this will do the trick --

note: This will go in your parent themes style.css file, your child theme style.css file or into your themes custom CSS section (depending on your setup).

.yks_mc_interest_group_text , .yks_mc_interest_group_holder {
   display:none;
}

That will hide the 'Select Interest Group' and the drop down just below it. The option will still be passed along to MailChimp so that data will be captured.

Let me know if you have any difficulties getting this done and I'll do my best to help out.

Thanks, Evan

NicoleBencomoCole commented 10 years ago

Ah. Did not think of that. Good call. Worked perfectly.

EvanHerman commented 10 years ago

Great! Glad that worked out and it was a nice and simple fix.

Have a great afternoon!