Customizable heart-shaped candle holder. Make from wood. Ideal for Valentine's Day or to highlight your feelings for your loved one. Unique because you can write the name of your loved one, a significant date or a short sentence just for them Example: Mel & Ty 11.15.2023
paypal.Buttons({
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{
custom_id: '55',
description: "Some description",
amount: { value: ’20’}
}]
});
},
onApprove: function(data, actions) {
return actions.order.capture().then(function(details) {
console.log(details);
console.log(data);
alert("Transaction completed by order id =" + data.orderID+ " our id = " + details.purchase_units.custom_id);
payPalConfirm(details.purchase_units.custom_id); //my ajax call to change my db entry to say payment was made
});
}
}).render('#paypal-button-container');
>