I am having some problems with our ‘single-page’ order form. (This is the first of two I am posting.) After you specify the products and quantities you want, then click Add to Cart, the resulting shopping cart does not reflect the correct quantities. My test cases are so far consistent in that the quantities are incorrect for the products which are connected to a Quantity Discount Group (which are most of our products). Please use the following link to view this problem: http://www.jewishcard.com/shopping/Sing ... rTest.html
The products that are NOT connected to a Quantity Discount Group are those listed under “Money Cards”, “Passover”, “Wrap Packs”, and the ‘Assorted Collections’ under “Hanukkah”. Anytime I choose ONLY those products, those quantities seem to process correctly. Anytime I add products from a Quantity Discount Group, the quantities do not process correctly. Is this a known limitation of single-page order forms, or am I doing something wrong? If anyone can help, I’d greatly appreciate it. Note: It is not necessary to “Checkout” to view this; just add products and quantities from the order form, then click “Add to Cart”. I am using the standard code:
<form name="OrderForm" action="http://www.jewishcard.com/shopsite/sc/order.cgi" method=post>
<input type=hidden name=storeid value=[our store id]>
<input type=hidden name=dbname value=products>
<input type=hidden name=function value=add>
<input type=image src="media/addtocart.jpg" hspace=3 vspace=3 align="top" name="Add_to_Cart" alt="Add to Cart">
Followed by a series of:
<input type=checkbox name="itemnum" value=39>
<input type=text size=2 name="39:qnty" value=5>
And finally:
</form>
Thanks!