Set currency to CAD

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 năm cách đây
Hi,

I have setup CAD to be the primary and only currency. Now in the store, it does not display the currency code, it only displays $25.00. How can I change the display to $25.00 (CAN)?

Thanks

Anurag
13 năm cách đây
no issues for me so far changing from USD, CAD, EUR
13 năm cách đây
1. Open Libraries\Nop.BusinessLogic\Localization\LocalizationManager.cs
2. Find GetCurrencyString(decimal amount, bool showCurrency, Currency targetCurrency) method
3. And replace
if (showCurrency && IoCFactory.Resolve<ICurrencyManager>().GetAllCurrencies().Count > 1)

with
if (showCurrency)
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.