Hey Deb,
I took your code from the section of your template that defines the product and used it in a sample template. It works as it should in transferring the chosen options into the cart.
Are you wanting to just remove the dropdowns from the cart? If so, you can add this to your stylesheet:
- Code: Select all
.cart_op, .cart_op1, .cart_op2 {
display: none;
}
This will keep the options from displaying in the cart. Make sure you add those code after the ShopSite cart codes.
On your more info page, you do not have a form tag around your ordering options. That is keeping those options from transferring to the cart. It has to be like this:
- Code: Select all
<form action="[-- SHOPPING_CART_URL Base --]/order.cgi" method="post">
<input type="hidden" name="storeid" value="[-- STORE.ID --]">
<input type="hidden" name="dbname" value="products">
<input type="hidden" name="function" value="add">
<input type="hidden" name="itemnum" value="[-- PRODUCT.RecordNumber --]">
[-- PRODUCT.OptionText --]
[-- Order_Option_Menu Line --]
</form>
Also, there are a number of errors in your regular HTML.