Announcement

Collapse
No announcement yet.

Any way to remove quantity increment/decrement buttons?

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

    Any way to remove quantity increment/decrement buttons?

    Hi,

    Is there any way to remove the increment and decrement buttons beside the quantity box (see image attached)?

    I cant find anything within design view that shows them and furthermore can't find them in the CSS stylesheets. Where they should be in design view, they simply aren't there.

    Perhaps I'm missing an option in site settings somewhere?
    Attached Files

    #2
    I have the same question (Smart RWD). I thought they might disappear if I set 'Order quantity always one' in Business Settings, but no such luck.

    John
    John Ennals
    www.tortoys.co.uk

    Comment


      #3
      They are added by jQuery / JavaScript. To disable them, edit file responsive.js (in your Site folder, back it up first).

      Look for:
      Code:
      	quantityButtons : function() 
      		{
      Amend it to be:
      Code:
      	quantityButtons : function() 
      		{
      		return;
      Note that you will need to re-do this if you upgrade SD to a new version, as script files invariably get replaced by newer ones.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment

      Working...
      X