Jump to content

Maximum Quantity only allow enter up to 999, I need to set up it up to 200,000 as I'm selling papers


Recommended Posts

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

×
×
  • Create New...