You are here: Home
Support site for Tips and Tricks HQ premium products
Issue solved!
Replaced the following line in the “wp_eStore1.php” file:
return $symbol.number_format($price, 2, $decimal, $thousands_sep);
with the following
return number_format($price, 2, $decimal, ',') . $symbol;