RE: Add multiple products in product_info.php
Rumble <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.features |
|---|---|
| Message-ID | <ca83c8731513809704047269c3215497@osCommerce-Forums> |
This message was sent from: Features
http://forums.oscommerce.com/viewtopic.php?p=206312#206312
----------------------------------------------------------------
Hi,
Open your product_info.php page and before the 'in cart' button add this code
[code]Quantity <input type="text" name="quantity" value="1" maxlength="4" size="3">[/code]
so it looks something like
[code] <td align="right" class="main">Quantity <input type="text" name="quantity" value="1" maxlength="4" size="3"> <?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?></td>
[/code]
Back up b4 you try!