#Karthik-subscription
1 messages · Page 1 of 1 (latest)
Hi there!
You have two options:
- Either create a new price ID in a different currency, and use that new price Id in the Checkout Session
- Or, you can directly set the price and currency when creating the Checkout Session with https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-line_items-price_data
First option cannot be used as the site is across 20+ currency.
Is there a option to show amount in the required currency at the payment page (when user enters the card details)
I already have the prices set on Stripe dashboard and want to use that price converted into different currency during the checkout.
First option cannot be used as the site is across 20+ currency.
Note that using option 2 will also create a new price ID for you.
Is there a option to show amount in the required currency at the payment page (when user enters the card details)
If you are using Checkout Session, the amount should be shown on the Checkout page.
But this again shows the amount in the predefined currency
So there is no way the checkout page can show amount in different currency ( using already existing price ID)
So there is no way the checkout page can show amount in different currency ( using already existing price ID)
The Checkout page will show the Price ID amount. If you want a different amount, you need a different price id (or like I said earlier, directly set the amount/currency inline_items.price_data)
That means the conversion has to be done at my end!!