PrestaShop Currencies Options
Posted by admin | Date: 11 DEC 12:20 pm | Category: Features, PrestaShop | Comments OffWith PrestaShop, you can add an unlimited number of currencies to be used on your Front Office.
Adding a new currency
- Go to Back Office >> Payment >> Currencies
- Click Add New.
- Fill in the fields and select a currency formatting from the drop-down list.
Note: In the Conversion rate field, type only numerical values, e.g.,1.38. Do not include any currency symbols. - Click Save.
Changing the default currency
The default currency is the currency PrestaShop will display by default when a customer visits your online store.
To change the default currency:
- Go to Back Office >> Payment >> Currencies
- In the Currencies options section, select a new default currency from the drop-down list.
Changing how a currency is displayed
- Go to Back Office >> Payment >> Currencies
- In the list of currencies, click on the currency of which you want to change the format.
- On the currency’s detail page, select a new formatting from the drop-down list.
- Click Save.
If you require a different formatting than the choices offered, you can manually change the formatting:
- In
../classes/Tools.php, search for:function displayPrice - Change:
/* Currencies like ¤ -> 1200 ¤ */
case 2:
default:
$ret = number_format($price, 2, ‘,’, ‘ ‘).’ ‘.$c_sign;
Updating currency rates in real time
- Go to Back Office >> Payment >> Currencies
- In the Currencies options section, click Update currencies rates.














