#okirra
1 messages · Page 1 of 1 (latest)
hi! there are a few guides for this. Are you a developer, what level of technical integration are you looking for?
im a sub par developer, but im making a site to sell some services. I want customers to be able to select the services then checkout.
i watched this video:
https://www.youtube.com/watch?v=1-olKBnmC84&ab_channel=StripeDevelopers
Which tells me how to do what i want to do, but it doesnt go over how to setup stripe
In this episode, you'll learn two ways to collect variable amount one-time payments with Stripe Checkout. First, you can enable customers to define the price they pay at Checkout for donation or tip use-cases. You'll also learn how to pass a custom amount when creating the Checkout Session, useful in cases where you maintain a large product cata...
well https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=checkout would be sort of the pre-requisite/related guide there
if you want an easy solution then PaymentLinks are by far the easiest and require no real code https://stripe.com/docs/payment-links/create
basically i want to create a price based off of the customers selection of our services, then have a way for them to checkout with that price
so i think id have to create a product on the fly
you could do it that way yes, use custom logic to decide what to pass to checkout.session.create
there are other options, like https://stripe.com/docs/payments/checkout/pricing-table if that works. Really depends, just showing you some options.