Announcement

Collapse
No announcement yet.

How to Remove Quantiy from product page

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

    How to Remove Quantiy from product page

    Can any tell me how to remove the quantity field option from the product page. We provide our quantity options by using attributes and the quantity field is becoming confusing for customers.
    Regards

    #2
    Re: How to Remove Quantiy from product page

    Go to Pages > PROD > Product Display Layout. If you don't see a text area with a bunch of code, click the link for Advanced Mode to get the template view.

    Find this line:

    Code:
    <mvt:item name="fonts" param="body_font">
    Quantity:
    <input type="text" name="Quantity" value=1 size=4>
    <mvt:item name="buttons" param="AddToBasket" />
    </mvt:item>
    And change it to this:
    Code:
    <mvt:item name="fonts" param="body_font">
    <input type="hidden" name="Quantity" value="1">
    <mvt:item name="buttons" param="AddToBasket" />
    </mvt:item>

    Comment


      #3
      Re: How to Remove Quantiy from product page

      Originally posted by rooted View Post
      Can any tell me how to remove the quantity field option from the product page. We provide our quantity options by using attributes and the quantity field is becoming confusing for customers.
      Regards
      Thank you Leanne. it dod the job.

      Comment


        #4
        Re: How to Remove Quantiy from product page

        Thank you Leanne. it did the job.

        Comment

        Working...
        X