#jordanmmcgregor
1 messages · Page 1 of 1 (latest)
Is there a specific doc that you are looking at on our site? I know of upsells on the Checkout Page but am not immediately remembering post purchase upsells
Happy to look in to it either way but a doc like that will help me start out stronger
Thank you! I know that services like Funnelish use Stripe as a payment processor and they allow you to somehow maintain customer information and follow the first checkout page with offers that just require one click. I don't know if that answers your question or not. Happy to explain further.
Here is another service that is built on Stripe that allows for one-click upsells. https://checkoutpage.co/blog/introducing-one-click-upsells
Gotcha, so I think for that they likely built their own custom page. Stripe's upsells offering only appears on the Checkout Session while the user is making their initial payment. It sounds like those plugins save the payment method and re-use it if a user clicks on one of those buttons
Happy to provide relevant docs if you are looking to code something like that with the APi yourself
That would be fantastic!
As another note, I really want to use the Stripe checkout page because it is well optimized for conversion. Is there a way to either, use a "Payment Link", or embed the Stripe checkout as an iframe that would allow for the post-purchase upsell flow in conjuction with the API solution?
Payment Links actually create Checkout Sessions behind the scenes. Basically when you are setting up a Payment Link you are giving Stripe a specific configuration that it uses to make a Checkout Session whenever a user clicks on a link
That does limit some of your flexibility in what settings you can use, the tradeoff is that creating your own Checkout Sessions is more hands on but it is more customizable
Are you planning on doing subscriptions, one time payments, or both here?
For now just one-time payments.
Gotcha. So there are going to be a good amount of docs to read here.
As Pompey suggested, there's some reading you should do.
Checkout overview: https://stripe.com/docs/payments/checkout
Payment links: https://stripe.com/docs/payment-links
Note that there is currently a beta running to embed checkout in your page like you asked, see here for a preview and the information for reaching out to request access: https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=embedded-checkout
Thank for this information!