| To change the site currency there are several edits which must be performed. THis must be done for each language folder.
The following files must be edited:
/languages/english/lang_index.php
Edit: define('GBP','USD');
and make: define('GBP','XXX'); ( WHERE XXX IS YOUR CURRENCY CODE)
/languages/english/common/lang_product.php
Edit: define('ALL_PRICES_ARE_IN_US_DOLLARS','All prices are in US Dollars');
and make: define('ALL_PRICES_ARE_IN_US_DOLLARS','All prices are in your dollars');
open /config/config.inc.php Edit:
Code:
$Currency = "$"; $CurrencyName="USD";
Change to:
Code:
$Currency = "$"; $CurrencyName="CAD";
|