How To Create Paypal Button For Multiple Items
HTML payment buttons
Integrating with our HTML payment buttons are as easy as including a snippet of code. Try it out and configure your own.
We have two flavors of buttons for you to use:
Buy Now
Buy Now buttons are for single item purchases.
< script src="paypal-button.min.js?merchant=YOUR_MERCHANT_ID" data-button="buynow" data-name="My product" data-amount="1.00" > </ script >
Add To Cart
Add To Cart buttons lets users add multiple items to their PayPal cart.
< script src="paypal-button-minicart.min.js?merchant=YOUR_MERCHANT_ID" data-button="cart" data-name="Product in your cart" data-amount="1.00" > </ script >
QR Codes
QR codes which can be scanned with a smart phone can also be easily generated.
< script src="paypal-button.min.js?merchant=YOUR_MERCHANT_ID" data-button="qr" data-name="Product via QR code" data-amount="1.00" > </ script >
Button variables
All of PayPal's HTML button variables are supported by prefixing their name with "data-". Here are the most commonly used:
-
data-name
Description of the item. -
data-number
The number of the item. -
data-amount
The price of the item. -
data-quantity
Quantity of items to purchase. -
data-shipping
The cost of shipping this item. -
data-tax
Transaction-based tax override variable. -
data-size
For button images:small
andlarge
work. For QR codes enter the pixel length of the longest side. -
data-id
The hosted ID of the button (if applicable).
Getting your Merchant ID
Your merchant ID needs to be added to the URL of the referenced script. This ID can either be your Secure Merchant ID, which can be found by logging into your PayPal account and visiting your profile, or your email address.
Download
To download the production-ready JavaScript you'll need to save one of these files:
- JavaScript Buttons
- JavaScript Buttons + MiniCart
The first file gives you support for PayPal's JavaScript buttons. The second file has the same code from the first, but also contains functionality for the PayPal Mini Cart.
To see the un-minified code you can take a peek at paypal-button.js.
JavaScript API
There's even a fancy JavaScript API if you'd like to pragmatically create your buttons.
PAYPAL.apps.ButtonFactory.create(data, type, parentNode)
Creates and returns an HTML element that contains the button code.
data - A JavaScript object containing the button variables
type - The button type, e.g. "buynow", "cart", "qr"
parentNode - An HTML element to add the newly created button to (Optional)
Browser support
The JavaScript buttons have been tested and work in all modern browsers including:
- Chrome
- Safari
- Firefox
- Internet Explorer 7+.
Contributing
We love contributions! If you'd like to contribute please submit a pull request via Github.
Mocha is used to run our test cases. Please be sure to run these prior to your pull request and ensure nothing is broken.
Authors
Jeff Harrell
https://github.com/jeffharrell
Mark Stuart
https://github.com/mstuart
How To Create Paypal Button For Multiple Items
Source: https://github.com/substack/JavaScriptButtons
Posted by: cliftonhowles1979.blogspot.com
0 Response to "How To Create Paypal Button For Multiple Items"
Post a Comment