|
The second step is to make a "shopadded.html" page, so
that after a customer has added a product to their cart,
it can confirm it, and show the current cart.
Place shopadded.html
in your main web directory. If your domain is "abc.com" then you
should be able to see http://www.abc.com/shopadded.html
There are 4 major components that should appear on your
shopadded.html page.
- Include [!PZ:added]
which will be replaced with the product
added text, ie: "RNG5 Diamond Ring $249.95"
- Include [!PZ:cart]
which will be replaced with a table view
of what is currently in your cart.
- Include a link back to your main product page (or product category
pages), so the customer may Continue Shopping
- Include [!PZ:checkout]
so that a link will appear, allow the customer
to get to the final order form/check out page.
Here is sample HTML code that accomplishes these 4 things:
We have added the following item to your cart:
[!PZ:added]
Here is your shopping cart:
[!PZ:cart]
<A HREF="http://www.yourdomain.com/products.html">
<B>Continue Shopping</B></A>
--
[!PZ:checkout]
|
|