#Kacper Wilczewski
1 messages · Page 1 of 1 (latest)
Hi there, is your question related to pricing table? https://stripe.com/docs/payments/checkout/pricing-table
yes
I don't see an option to add prices for specific countries. Stripe automatically detects users' locations, and I want the product prices to be adjusted for countries based on the requirements I mentioned earlier.
Currently, for example, when a user is from France, it returns EUR, but according to the project requirements, it should be USD.
OK, the pricing table can't present currency based on customer's location. So you might want to create three pricing tables, implement your own logic to determine customer's location, and pick one of tables accordingly.
Alright, so based on the user's location, do I need to query the Stripe API for a specific pricing table?
Is there perhaps an automatic solution available? Does Stripe automatically check the user's location and return the appropriate pricing table based on it?
No, pricing table doesn't detect customer location and show different price.
So I have to manually check the user's location and based on that, fetch the specific pricing table?
Yes you are right