#RomanistHere
1 messages · Page 1 of 1 (latest)
Hi
You can check this support article :
https://support.stripe.com/questions/how-to-accept-donations-through-stripe
@real ocean thanks, I've read it. But it says only about payment links, from my understanding it will lead users to another page with checkout. While this is an option, I would love to EMBED a form on my website, so users will be able to enter card details right on that page without leaving. Is it achievable with Stripe Elements without third party tools like Donorbox?
from my understanding it will lead users to another page with checkout
That's a Stripe Product, Checkout.
While this is an option, I would love to EMBED a form on my website
You can use your own domain and load the Stripe Checkout over that domain:
https://stripe.com/docs/payments/checkout/custom-domains
Or you build an integration using Stripe Element:
https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements
You need to build a backend and a frontend for that.
so it is possible to build a donation form with Stripe Elements, right? That's all I wanted to know
because there are so many third party tools for that and not a single example in official documentation, which alltogether made me think that it's not possible
Yes, you create a frontend that make the customer choose what amount to pay, you make a backend API call to create a Stripe PaymentIntent object with that amount, you create/mount the Stripe Element in your frontend with that PaymentIntent in order to collect the payment
thanks, thought so