Quote:
Originally Posted by daniel patin
I'm sorry but I had already chosen this option
|
You are using free Ecwid account, so the module cannot get profile's settings via API.
That's why currency suffix and prefix cannot be displayed on-fly.
I will add an option to handle this situation in the future.
Currently, you can edit the next piece of code:
$to_return .= $profile['currencyPrefix'] . $product['price'] . $profile['currencySuffix'];
in the ecwid-useful-tools.php script in order to hard-code the currency.
In your particular case, it should be replaced with:
$to_return .= $product['price'] . '€';
Surely, upgrading to paid account will fix the problem as well.