#i'm a cyborg but that's okay
1 messages · Page 1 of 1 (latest)
Unfortunately not, as far as I can see.
Can you tell me more about your use-case here? If this is a one-time payment, Checkout does support that
So, i'm providing users the ability to modify(upgrade/downgrade) their plan(after they have subscribed to a plan). However, I want the users to pay upfront.
So, during subscription update, stripe tries to charge the user, but fails since it requires user authentication. So, I get the hosted_invoice_page URL, and redirect the user to it so they can pay.
But now, they can't go back to my product(or rather there's no back button on the UI/invoice page doesn't redirect them back to our product page).
Gotcha. Would you be open to writing your own custom page here? If so you can use the PaymentElement from this guide and pass in the payment intent from your invoice rather than creating one directly https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements#web-collect-payment-details
that's cool. Thanks a lot!