Community Add-Ons
| Maintainers: | luckyno |
Quantity Box to Product Info RC2a
for osCommerce Online Merchant v2.2
This adds a quantity box to product info.
It comes from the official oscommerce guide: http://www.oscommerce.info/kb/osCommerce/General_Information/Tips_and_Tricks/246
But it is updated to reflect RC2a code changes.
In my opinion this one is nicer.
In product_info.php Instead of :
-----------------------------------------------
<input type="text" name="quantity" value="1" maxlength="2" size="2">
use:
-----------------------------------------------
<select name="quantity">
<option value="1" selected>1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
