Attempting to use Stripe Checkout as a part of a simple form submission.
Our Go To Payment button is attempting to perform 3 actions:
- Add Product to Cart
- Checkout Cart
- Go to Step - None Finish Form
When Action 3 is not in the flow, the user is redirect to the Stripe Checkout page (takes multiple clicks of the button).
When Action 3 is in the flow, the user is taken to a Submission Complete page and the user is never redirected to Stripe Checkout.
Other challenges we’re running into:
- This Feathery form is connected to Zap that initiates a series of API calls. Currently there is no way for us to confirm that the user completed the Stripe Checkout payment submission because Feathery is considering the form completed by Action 3.
- How can we ensure that the user completed the Stripe Checkout form before considering the Feathery flow completed?
- Why does it take multiple clicks to go to Stripe Checkout page?