PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Advanced User Interface State Drop Down

  1. How do I get the state dropdown in the "Address" advanced field to have the advanced user interface? I can't figure out how to do it. Having 1 regular drop down when all the others have the advanced interface looks terrible.

    Posted 11 years ago on Monday December 17, 2012 | Permalink
  2. To use the advanced interface, you will need to use separate fields for the address and then add a list of states from the "Bulk Add" for your enhanced interface drop down. That means you would not use the address block, but would use individual fields to be able to take advantage of the enhanced drop down interface.

    Posted 11 years ago on Tuesday December 18, 2012 | Permalink
  3. Thanks a ton for the quick reply. I've done that but now it looks weird that the asterisk for the required fields is on every single box. Is there a way to remove the asterisk for just a few specific fields (I don't want to remove theme from any of the other fields)?

    Posted 11 years ago on Tuesday December 18, 2012 | Permalink
  4. You will need to view the source of the page where your form is embedded and target the fields you don't want to mark with an asterisk. Here is how you hide it:

    body .gform_wrapper li#field_142_1 .gfield_required {
     display:none;
    }

    That will hide the asterisk for form 142, field 1. If you view the source of your page, you will get similar-looking field IDs.

    Posted 11 years ago on Thursday December 20, 2012 | Permalink