Reputation: 61
I am selling a physical product through Stripe Checkout (the native stripe version) and I'm looking to lock the shipping address to UK.
Has anyone any info on how this can be configured? Can't find it in docs.
Upvotes: 4
Views: 2354
Reputation: 12553
If using the javascript client integration, you can specify the allowed countries if you enable shipping address collection.
stripe.redirectToCheckout({
...
shippingAddressCollection: {
allowedCountries: ['DK'],
},
})
Upvotes: 2
Reputation: 25572
This is not something supported by Stripe Checkout at the moment. The best solution here would be to collect the shipping address in your own form before opening Stripe Checkout and only collect billing address in Checkout (or no address at all).
Upvotes: 1