It sounds like your Stripe Checkout integration is working well, but you're missing a proper redirect after payment. Stripe Checkout allows you to set success_url and cancel_url when creating a Checkout session. You should ensure these URLs are correctly configured to redirect users after payment. If you're using a plugin, check its settings for redirect options. Otherwise, in your code, add success_url=https://yourdomain.com/success and cancel_url=https://yourdomain.com/failure when initializing the Checkout session. This will ensure users land on the appropriate page after payment. If you need more details, feel free to contact Stripe support or check their documentation.