You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Hi,
I have been working on setting up the API cart for my site at
I am running into trouble with getting the shipping options to show up. I put the code in as follows (and tried lots of other configurations!):
<FORM method="POST" action="http://www.creature-teacher.com/cgi-bin/cp-app.cgi">
<INPUT type="hidden" name="name" value="Indoor Drag Line">
<INPUT type="hidden" name="number" value="1">
<INPUT type="hidden" name="price" value="5">
<INPUT type="hidden" name="urlproduct" value="http://www.petexpertise.com">
<INPUT type="hidden" name="pg" value="ste_cart_add_proc">
<INPUT type="HIDDEN" name="cart_api" value="Y">
<INPUT TYPE="HIDDEN" NAME="orig_pg" VALUE="http://www.creature-teacher.com">
<INPUT TYPE="TEXT" NAME="quantity" VALUE="1" SIZE="5"><BR><BR>
<INPUT TYPE="HIDDEN" NAME="delivery_method" VALUE="P">
<INPUT TYPE="HIDDEN" NAME="prodship_name1" VALUE="Standard Shipper">
<INPUT TYPE="HIDDEN" NAME="prodship_price1" VALUE="8.00">
<INPUT TYPE="SUBMIT" NAME="SUBMIT" VALUE="Add To Cart">
</FORM>
And when I try to purchase the test item at I don't see the shipping options.
Help!
Thanks,
Jess
Offline
Me again,
Wanted to update that in fact, I can't seem to add any info: options, etc. besides price and item name.
Jess
Offline
In order to offer different shipping options, you can specify up to 3 different options for the product based shipping method.
<INPUT TYPE="HIDDEN" NAME="prodship_name1" VALUE="Standard Shipper">
<INPUT TYPE="HIDDEN" NAME="prodship_price1" VALUE="8.00">
<INPUT TYPE="HIDDEN" NAME="prodship_name2" VALUE="Priority Mail">
<INPUT TYPE="HIDDEN" NAME="prodship_price2" VALUE="10.00">
<INPUT TYPE="HIDDEN" NAME="prodship_name3" VALUE="Overnight">
<INPUT TYPE="HIDDEN" NAME="prodship_price3" VALUE="12.00">
Offline
I have tried that. As well as using settings for custom shipping and real-time shipping. Nothing works.
Jess
Offline
It looks like the options are working (at least they did for me). To get shipping to work, make sure you include these fields:
<INPUT TYPE="HIDDEN" NAME="delivery_method" VALUE="P"> <INPUT TYPE="HIDDEN" NAME="prodship_name1" VALUE="Standard Shipper"> <INPUT TYPE="HIDDEN" NAME="prodship_price1" VALUE="8.00">
Offline
I have added those fields without success.
Jess
Offline