In my api I need to send cart in store main currency from cart page.
So I make call like below
/cart.json?currency=AUD
Here AUD is store main currency.
Now what happen after this ajax call user selected currency is change to AUD.
I can stop that with make ajax call again with
/cart.json?currency=${window.Shopify.currency.active}
but cart can change many time it is not proper solution
So any help regrading get cart in main currency without change user selected currency would be great.
I’ll also try to convert cart in main currency manually via js but not getting exactly same value as don’t know exact conversion api rules.
The main goal I try to achieve get cart in store main currency on cart page.