everywhereprint.com Posted January 7, 2012 Share Posted January 7, 2012 Maximum Quantity only allow to enter up to 999 from front shop, I need to set up it up to 200,000 as I'm selling papers. How to setup / edit the script? Many Thanks! Link to comment Share on other sites More sharing options...
El Patron Posted January 7, 2012 Share Posted January 7, 2012 in yourtheme/product.tpl change: <!-- quantity wanted --> <p id="quantity_wanted_p"{if (!$allow_oosp && $product->quantity == 0) OR $virtual OR !$product->available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}> <label>{l s='Quantity :'}</label> <input type="text" name="qty" id="quantity_wanted" class="text" value="{if isset($quantityBackup)}{$quantityBackup|intval}{else}{if $product->minimal_quantity > 1}{$product->minimal_quantity}{else}1{/if}{/if}" size="2" maxlength="3" {if $product->minimal_quantity > 1}onkeyup="checkMinimalQuantity({$product->minimal_quantity});"{/if} /> </p> change maxlength="3" to the value that you need (20000) you would need value "5" Link to comment Share on other sites More sharing options...
Recommended Posts