Announcement

Collapse
No announcement yet.

How do i create a drop down menu ??

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

    How do i create a drop down menu ??

    Hi All

    Can anyone tell me how to create a numbered drop down menu.

    IE: at the moment the customer has to put in the box (set to 0) how many items they want. I would like to make it a bit easier and have a drop down selection say 1 to 10 for example

    Thanks Keith

    #2
    In your Product Layout(s) look for
    Code:
    <input type="text" name="Q_<Actinic:Variable Name="ProductReference"/>" size="4" value="<Actinic:Variable Name="DefaultQuantity"/>" class="form_input_general" />
    Replace it with
    Code:
    <select name="Q_<Actinic:Variable Name="ProductReference"/>">
    <option value="0">0</option>
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    </select>
    Alter the option list as required.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Thanks Norman

      Will i have to do this with every single product as there are 100s or is there a seeting to change all in one go ??

      Thanks Keith

      Comment


        #4
        No. You alter your Product Layout once, and then all products immediately start using the modified layout. If you switch to the Design tab and click within a Product in the Page Preview, then look in the Layout Code window.
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          Thanks Norman

          It worked a treat

          Thanks
          Keith

          Comment

          Working...
          X