Is it possible customize checkout page with hydrogen/storefront API? #300
-
I saw there is Is it possible to provide custom checkout page with basic Shopify plan? https://shopify.dev/api/storefront/reference/checkouts/checkoutcreate |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @xiaoyu-tamu! At this point we only grant permission for customizing the checkout page to select users based on eligibility. They would use the You can learn more about the cart here and specifically how it was built in Hydrogen here. |
Beta Was this translation helpful? Give feedback.
Hey @xiaoyu-tamu! At this point we only grant permission for customizing the checkout page to select users based on eligibility. They would use the
checkoutComplete
mutation to control the UI. This is why you're only seeing the cart and web checkout in Hydrogen. In fact there is are a number of challenges that come with thecheckoutCreate
mutation, including the ability for bots to bypass the UI and essentially cause throttle issues for customers. The cart is much safer approach here!You can learn more about the cart here and specifically how it was built in Hydrogen here.