This is the second of two posts regarding a problem we are having with our single-page order form. I would like to list the same product under more than one category on our form. However, this results in an error when the customer clicks “Add to Cart”. Is this a known limitation of Multi-product Add to Cart forms? Here is a sample test case:
http://www.jewishcard.com/shopping/Sing ... Test2.html
Note that you don’t even have to add either of the products that are listed twice to your cart – you will still get an error.
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!