You problem, may be you are still using USD as default or setup not correct.
I have already checked the currency exchange today.
There is $ 1 USD = £ 0.532595 GBP
1. In tha admin, have you setup and update the currency correctly?
2. Have you change the default setting for your default currency?
3. What is your currency code in the file:
includes/languages/english.php
Note: For any modification(s), please use override! And refer to other docs about how to use override.
And in line no. 43 (zc v1.3.5)
Code:
// if USE_DEFAULT_LANGUAGE_CURRENCY is true, use the following currency, instead of the applications default currency (used when changing language)
define('LANGUAGE_CURRENCY', 'USD');
If you are using one language for "english" and use GB Pound as default, then try to change the above line for currecy code.
The steps:
1. copy the above file of english.php from:
includes/languages/english.php
2. save it to your override directory
includes/languages/YOUR_TEMPLATE/english.php
3. In the new file change the currency code:
from:
Code:
define('LANGUAGE_CURRENCY', 'USD');
to:
Code:
define('LANGUAGE_CURRENCY', 'GBP');
.