Currency Settings
- Price Precision. This setting is used by the numeric formatting function. Although a field database settings dictate length and decimal places, the script formats the price fields after calculations have been made and use this setting to format product price results. This setting dictates how many decimal places to display when formatting product prices.
- Tax Precision. This setting is used by the numeric formatting function to format tax calculation results.
- Thousand Separator. This one-character entry is used by the numeric formatting function to separate the thousand units. Example: 1,000
- Decimal Separator. This one-character entry is used by the numeric formatting function to separate the decimal portions of numeric values. Example: 199.99
Exchange Rates--multiple currencies
Prices and totals can be displayed in multiple currences by setting up exchange rates.
- Setup: To set up an exchange rate, go to the Exchange rate setup on the Wizard panel. Existing exchange rates, if any, will be displayed at the top, and can be modified here. To add an exchange rate, enter the currency code, current exchange rate and choose whether the conversion is division or multiplication.
- Maintenance. For the Merchant's convenience, once the exchange rate is setup, the current rate can be updated in the Merchant panel.
- Displaying multiple currencies. To display an amount using an exchange rate that has been set up, place the following currency shortcut in the desired posistion:
{{exchange_rate(XXX,price_variable)}}
(Where XXX represents the currency code specified in setup and price_variable is the variable name to be converted. Example:
Price in USD: ${{net_price}}<br>
Price in Canadian Dollars: ${{exchange_rate(CAD,net_price)}}
|