|
If you mean the quantity in the product page, there is 3 templates files depending on product type.
For simple products, the file is app/design/frontend/your_interface/your_theme/template/catalog/product/view/type/simple.phtml
Remove all the <span class="qty-box">[...]</span>
And by the way, for those who want the input box value to be 1 by default instead of nothing:
find:
<input name="qty" type="text" class="input-text qty" id="qty" maxlength="12" value="<?php echo $this->getMinimalQty($_product) ?>"/>
and replace with:
<input name="qty" type="text" class="input-text qty" id="qty" maxlength="12" value="<?php echo $this->getMinimalQty($_product)? $this->getMinimalQty($_product): 1 ?>"/>
|