Hi, got the same problem and I fix it like this :
- open ../your-tomatocart-folder/includes/classes/currencies.php
- go to line 108 :
return $this->currencies[$currency_code]['symbol_left'] . number_format(osc_round($number, $this->currencies[$currency_code]['decimal_places']), $this->currencies[$currency_code]['decimal_places'], $osC_Language->getNumericDecimalSeparator(), $osC_Language->getNumericThousandsSeparator()) . $this->currencies[$currency_code]['symbol_right'];
replace with :
return $this->currencies[$currency_code]['symbol_left'] . number_format(osc_round(
(double)$number, $this->currencies[$currency_code]['decimal_places']), $this->currencies[$currency_code]['decimal_places'], $osC_Language->getNumericDecimalSeparator(), $osC_Language->getNumericThousandsSeparator()) . $this->currencies[$currency_code]['symbol_right'];
It works for mine
Guess it does too for yours
Nemo
