Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

easy way add Qty box in your product_info.php


minglou

Recommended Posts

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!!

Link to comment
Share on other sites

Nice little mod, thanks, but before I implement it;

 

~ Are you sure this causes no errors elsewhere ?

~ Do you have this working on a live site ?

~ Have there been any problems ?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...