Custom Cart and Checkout

Is there any video tutorial or guide on how to create custom cart and checkout?

What exact payment processor are you trying to work with?

The general flow for me should look like:

  • Users add items to their cart, you have a table for cart items to store those.

  • You calculate the total amount for the order and then when the user clicks “checkout”, via the API of your payment processor, you generate a new checkout session for them (using a Stripe term for example).

  • You bring the user to that checkout session, let them pay, and via the API again, bring the payment info back to the app to confirm that they have paid.

1 Like