Announcement

Collapse
No announcement yet.

How can I create a drop-down list of options for the 'How did you find out site?'...

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How can I create a drop-down list of options for the 'How did you find out site?'...

    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 :

    HTML Code:
    <input type="text" name="GENERALHOWFOUND" size="40" maxlength="255" value="<Actinic:Variable Name="GeneralHowFound"/>" />
    4. Replace this with something like :

    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>
    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.
Working...
X