souce Posted September 7, 2009 Share Posted September 7, 2009 Hi there, im having a problem with quantity, on the back end i have set quantity of a product to 9999 but on front end , user can only order quantities of three digits ie 999,how do i set this Link to comment Share on other sites More sharing options...
rocky Posted September 7, 2009 Share Posted September 7, 2009 The code you need to modify is line 255 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" /> Increase maxlength to 4 to enable quantities up to 9999 and increase the size to make the text field longer. Link to comment Share on other sites More sharing options...
Recommended Posts