#lumen_code
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1409906441401274440
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi there, if you're just getting started I'd recommend checking out our quickstart guides https://docs.stripe.com/checkout/quickstart
for shipping and VAT calculation, you can look into the following docs:
https://docs.stripe.com/payments/checkout/custom-shipping-options?payment-ui=embedded-form
https://docs.stripe.com/payments/checkout/taxes
Customize shipping options during checkout, including setting the update permissions of the Checkout Session, adding onShippingDetailsChange event handler to the Checkout client, and updating the shipping options based on the customer's shipping address from your server.
Ah, so it's not possible to just give stripe checkout a list of shipping costs, and have it add the cost in addition to the product, after the user selects the country inside the checkout UI? I have to implement that in the UX of my own website?
if you want to manually specify shipping costs, you can do that https://docs.stripe.com/payments/during-payment/charge-shipping
however this only supports a fixed shipping rate for the entire order
But that won't work for different countries, right? Like, if I want to set one rate for US, another for EU, another one for UK? Shipping costs is for things like "standard, express, and overnight", and it wouldn't make sense to use this UI to show "UK, US, EU, etc"? Because if the user selects their address as in "united states", they'd still be able to see UK/EU pricing options?