by
KK » Tue Jun 30, 2015 2:18 pm
Hi,
You seem to be confusing between two very distinct concepts -
1. PayPal button
2. PayPal cart
Allow me to recap the differences between the two.
PayPal button is used to show a button
per product where clicking on the button
leads the visitor immediately to PayPal with info about that
one single product.

PayPal cart on the other hand does not give you any such buttons. You create your own (as you mentioned
<input class="btn btn-success product-add" type="submit" value="Add to Cart">).
More importantly, clicking on these buttons does *not* lead the visitor immediately to PayPal (as was the case with the PayPal buttons above). Rather, the product associated with the button is added to a cart. The visitor may keep surfing the site and adding more products to the cart (or removing them). Finally when she decides to click ckeckout, that is where she is redirected to PayPal with info about *all* the products in the cart (as opposed to only a single product in the case of PayPal button).
So if your site is selling only a handful of products, PayPal button is good.
For anything more extensive, PayPal cart should serve better.
Having understood the differences, I'd like to point out that the two concepts have documented separately in Couch -
PayPal button:
http://www.couchcms.com/docs/concepts/paypal.htmlhttp://www.couchcms.com/docs/tags-refer ... utton.htmlPayPal cart:
http://www.couchcms.com/docs/concepts/s ... art-1.htmlhttp://www.couchcms.com/docs/concepts/s ... art-2.htmlHope it helps.