Elfbar pineapple coconut ice
function initPayPalButton() { paypal.Buttons({ style: { shape: 'rect', color: 'gold', layout: 'vertical', label: 'paypal', }, createOrder: function(data, actions) { return actions.order.create({ purchase_units: [{"description":"Elfbar pineapple coconut ice","amount":{"currency_code":"USD","value":27.6,"breakdown":{"item_total":{"currency_code":"USD","value":23},"shipping":{"currency_code":"USD","value":4},"tax_total":{"currency_code":"USD","value":0.6}}}}] }); }, onApprove: function(data, actions) { return actions.order.capture().then(function(orderData) { // Full available details console.log('Capture result', orderData, JSON.stringify(orderData, null, 2)); // Show a success message within this page, e.g. const element = document.getElementById('paypal-button-container');