Community Add-Ons

Maintainers: luckyno
Add file to this package
Top » Features

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.

Legend:  Download   Report
Expand All / Collapse All
Drop down selection instead of textbox Oren 14 Aug 2008  

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>

Quantity Box to Product Info RC2a luckyno 9 Aug 2008