How can I create a drop-down list of options for the 'How did you find out site?' question in checkout?
Try this :
1. Switch to the 'Design' tab in the software and select 'Checkout Page 2' from the 'Select Page Type' drop-down.
2. Scroll down the Preview window and click on the "How did you find our site" text.
3. You should now have the 'General User Definable 1' layout displayed in the 'layout code' pane. Find the line :
4. Replace this with something like :
You can replace the above choices with values of your own.
5. Apply changes and upload the site. Customers should now see a drop-down instead of a free-format text-field.
Try this :
1. Switch to the 'Design' tab in the software and select 'Checkout Page 2' from the 'Select Page Type' drop-down.
2. Scroll down the Preview window and click on the "How did you find our site" text.
3. You should now have the 'General User Definable 1' layout displayed in the 'layout code' pane. Find the line :
HTML Code:
<input type="text" name="GENERALHOWFOUND" size="40" maxlength="255" value="<Actinic:Variable Name="GeneralHowFound"/>" />
HTML Code:
<!--<input type="text" name="GENERALHOWFOUND" size="40" maxlength="255" value="<Actinic:Variable Name="GeneralHowFound"/>" />--> <select name="GENERALHOWFOUND"> <option value="Search Engine">Search Engine <option value="Magazine">Magazine <option value="Other">Other </select>
5. Apply changes and upload the site. Customers should now see a drop-down instead of a free-format text-field.