Hi, what is the easiest way to set the default value for my drop down list? I don't see the obvious option? Thank you!
PS I saw this post below, but I have multiple drop down lists, and want different default values on each (obviously!)...
You can set the the selected value of a drop down based on a query string parameter. Try the following:
1- In the form editor, select your drop down field, go to the advanced tab and check the "Allow field to be populated dynamically" field. Enter a parameter name for it (i.e. mydropdown)
2- When linking to the page/post that has the form, create your url passing the value you want selected in the quey string. For example, if you have an item in your drop down called "Cars", you would use the following url: http://your_url.com/my-page/?mydropdown=Cars
thank you! JessaLouisa