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.
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.
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.
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)?
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.