How to create a View Cart / Checkout button

jwarach
Contributor
Contributor

I am using Website Payments Standard. The Merchant Services allow me to create an "Add to Cart" button for each item in my inventory, but I also need a "View Cart" and/or a "Check out" button, so that people who have previously added items to their shopping cart and then gone back to the website can go to their shopping cart to purchase the items.  But I can not find a "View Cart" button. How do I create this?

 

Thank you.

 

Login to Me Too
2 REPLIES 2

Brian1295
Contributor
Contributor

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
 <input type="hidden" name="cmd" value="_cart" />
 <input type="hidden" name="display" value="1" />
 <input type="hidden" name="business" value="Enter your PayPal e-mail address here..." />
 <input type="hidden" name="lc" value="US" />
 <input type="hidden" name="charset" value="windows-1252" />
 <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_viewcart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" />
</form>

Login to Me Too

tradmusic
Contributor
Contributor

@Brian1295 wrote:

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
 <input type="hidden" name="cmd" value="_cart" />
 <input type="hidden" name="display" value="1" />
 <input type="hidden" name="business" value="Enter your PayPal e-mail address here..." />
 <input type="hidden" name="lc" value="US" />
 <input type="hidden" name="charset" value="windows-1252" />
 <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_viewcart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!" />
</form>


The above just produces the error "Things don't appear to be working at the moment. Please try again later."

Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.