Contributions

Features (Category Index)
Search: 

Quantity Box to Product Info RC2a

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.

Expand All / Collapse All

Drop down selection instead of textbox 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 9 Aug 2008

Note: Contributions are used at own risk.