> - I would like to not have the store front show at all (I
>alrady have all the items listed on the main page of our
>website). What do I have to do that. These are updated instructions for shopping cart v3.5:
Please use one of the HTML snippets below for "add to cart" button. First contains qty field. Second had a hidden qty field with qty set at 1. Item number should be changed from 9001 to a proper one (Item number format is 900X, where "X" is the item number as you see it in administrative area. This: 9002, 9003, 90012, 90024 etc.).
##############
<form method=POST action=http://www.XXXXXXXX.com/cgi-bin/ppcal.cgi>
<input name=user value="1" type=hidden>
<input type=hidden name="##ITEM" value=9001>
<input type=text name=item_quantity value=1 size=6>
<input type=image src="ADD-TO-CART-BUTTON-IMAGE-URL" name=submit
border=0 alt=Go>
</form>
###############
<form method=POST action=http://www.XXXXXX.com/cgi-bin/ppcal.cgi>
<input name=user value="1" type=hidden>
<input type=hidden name="##ITEM" value=9001>
<input type=hidden name=item_quantity value=1>
<input type=image src="ADD-TO-CART-BUTTON-IMAGE-URL" name=submit
border=0 alt=Go>
</form>
> - I would like to remove the link from the item when it is
>in the shopping cart, or atleast have it point to the main
>page of our site where we have all the products listed. I
>dont want the buyer to click the item in their cart and be
>taken to a "software generated store" looking page.
This requires changes in script code. Please contact our tech support if you really wish this to be done.
Regards,
Support