Help Search our knowledge base:

Index - FAQ - Misc

 Details
Frequently Asked
Question (FAQ)

Document Number: 1095

Optimize for Printing
E-Mail This Link

 Feedback
This document ...
helps resolve my question or problem.
does not apply to my question or problem.
is inaccurate for my question or problem.
Can I redirect the receipt page to show my own thank you page instead?

To skip the receipt page use this code in ANY CartManager button. In most cases this code would need to be added to all of your buttons.

<input type=hidden name=ReceiptPushURL value="xxxxxx">

Where xxxxxx is the URL to the page you would like to direct the shopper to instead of the receipt page.

Here is an example of a simple button that has been modified to show our homepage instead of the normal receipt page.
<form method="post" action="https://cartmanager.net/cgi-bin/cart.cgi">
<input type="hidden" name="ReceiptPushURL" value="https://cartmanager.net/">
<input type="hidden" name="AddItem" value="demo|Demo product|10.95|1|pr1||prompt|1">
<input type="submit" name="Add to Cart" value="Add To Cart">
</form>