Jump to content

Please help, Need to have larger order quantity


Recommended Posts

Hi all,

I was wondering if anyone knew how to override the setting that only allows 3 digits for quantity when placing an order some items we sell are not sold as bundles but have quantities 1000 and above. currently the highest number i can get is 999

Thanks

Link to comment
Share on other sites

Have a look at line 200 of product.tpl in your theme directory:

<input type="text" name="qty" id="quantity_wanted" class="text" value="{if isset($quantityBackup)}{$quantityBackup|intval}{else}1{/if}" size="2" maxlength="3" />



At the end, change the maxlength attribute from 3 to 4 to allow quantities up to 9999. You can increase the length of the text field by increasing the size attribute.

Link to comment
Share on other sites

×
×
  • Create New...