easy way add Qty box in your product_info.php
| Newsgroups | gmane.comp.web.oscommerce.features |
|---|---|
| Message-ID | <39533bb84d493fd2f513bf2dd6a3b6d1@osCommerce-Forums> |
This message was sent from: Features http://forums.oscommerce.com/viewtopic.php?p=168460#168460 ---------------------------------------------------------------- 1. copy this code near your in_cart button in product_info.php, actually you can add this code anywhere. --------------------------------------------- <input type="text" name="quantity" value="1" maxlength="2" size="2"> -------------------------------------------- 2. search your application_top.php find this code: --------------------------------------------- $HTTP_POST_VARS['id']))+1 -------------------------------------------- replace with this one ------------------------------------------ $HTTP_POST_VARS['id']))+$quantity ------------------------------------------ done!!