Add the donate form widget when it’s connected to Stripe. Remove contact form keep crf contact info.
Send Us a Message
PayPal Standard Payments Integration | Client Demo
https://www.paypal.com/sdk/js?client-id=test¤cy=USD&intent=capture&enable-funding=venmo
const fundingSources = [
paypal.FUNDING.PAYPAL,
paypal.FUNDING.VENMO,
paypal.FUNDING.CARD
]
for (const fundingSource of fundingSources) {
const paypalButtonsComponent = paypal.Buttons({
fundingSource: fundingSource,
// optional styling for buttons
//
https://developer.paypal.com/docs/checkout/standard/customize/buttons-style-guide/
style: {
shape: ‘rect’,
height: 40,
},
// set up the transaction
createOrder: (data, actions) => {
// pass in any options from the v2 orders create call:
//
https://developer.paypal.com/api/orders/v2/#orders-create-request-body
const createOrderPayload = {
purchase_units: [
{
amount: {
value: ‘88.44’,
},
},
],
}
return actions.order.create(createOrderPayload)
},
// finalize the transaction
onApprove: (data, actions) => {
const captureOrderHandler = (details) => {
const payerName = details.payer.name.given_name
console.log(‘Transaction completed!’)
}
return actions.order.capture().then(captureOrderHandler)
},
// handle unrecoverable errors
onError: (err) => {
console.error(
‘An error prevented the buyer from checking out with PayPal’,
)
},
})
if (paypalButtonsComponent.isEligible()) {
paypalButtonsComponent
.render(‘#paypal-button-container’)
.catch((err) => {
console.error(‘PayPal Buttons failed to render’)
})
} else {
console.log(‘The funding source is ineligible’)
}
}