Announcement

Collapse
No announcement yet.

Choose quantity from dropdown?

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

    Choose quantity from dropdown?

    Hello,

    Is it possible to configure a product to use a dropdown box with selected quantities.

    For instance, I want my shopper to choose 6, 12, 18 or 24 of a particular item.

    -Bizweb
    Alec Moss
    Business Webpage Ltd
    Web Design
    Starter Websites

    #2
    create the product e.g. eggs. Then create a component called number, then create choices 6, 12, 18 or 24

    Product > eggs
    Component > number
    Choice 1 > 6
    Choice 2 > 12
    Choice 3 > 18
    Choice 4 > 24

    You can then assign values to the component. It can the value of the product. The sum of the product and choices or have no monetary value at all.
    Leigh Robinson

    Hand forged, hand folded custom swords
    http://www.masterforge.co.uk

    Comment


      #3
      Here's another way.

      Copy your Product Layout to new Layout.

      In that Layout look for

      Code:
      <span class="actrequired"><Actinic:Variable Name="QuantityPrompt"/></span><input type="text" name="Q_<Actinic:Variable Name="ProductReference"/>" size="4" value="<Actinic:Variable Name="DefaultQuantity"/>" class="form_input_general" />
      Replace that with
      Code:
      <span class="actrequired"><Actinic:Variable Name="QuantityPrompt"/></span>
      <select name="Q_<Actinic:Variable Name="ProductReference"/>" class="form_input_general" >
      <option value="6">6</option>
      <option value="12">12</option>
      <option value="18">18</option>
      <option value="24">24</option>
      </select>
      Note that this won't prevent the customer altering the quantities in the Cart.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        is there anyway of prevent customers from changing it in the cart? norman
        www.polymax.co.uk/acatalog/ number 1 for for o-rings, rubber seals, rubber cords. In Viton NBR and silicone.
        Cuddle And Carry, Baby Slings Wraps Ringslings Pouches and Carriers
        http://www.oringen.eu/ O-Ringen Rubber Koord Uitegdreven Profielen in Nitrile (NBR) Viton.

        Comment


          #5
          Its in the AUG as well

          Comment


            #6
            Example site http://www.ukcheaptoners.co.uk/acata...artridges.html

            Comment

            Working...
            X