Hi
At the file /root/app/helpers.php
Line Number : 194
Replace below code
function get_amount($amount = 0){
$show_price = '';
$currency_position = get_option('currency_position');
$currency_sign = get_currency_symbol(get_option('currency_sign'));
if ($amount > 0){
$amount = number_format($amount,2);
if ($currency_position == 'right'){
$show_price = $amount.' '.$currency_sign;
}else{
$show_price = $currency_sign.' '.$amount;
}
}else{
if ($currency_position == 'right'){
$show_price = '0.00 '.$currency_sign;
}else{
$show_price = $currency_sign.' 0.00';
}
}
return $show_price;
}
With below code
function get_amount($amount = 0){
$show_price = '';
$currency_position = get_option('currency_position');
$currency_sign = get_currency_symbol(get_option('currency_sign'));
if ($amount > 0){
$amount = number_format($amount,0,',', '.');
$show_price = $amount.' '.$currency_sign;
}else{
if ($currency_position == 'right'){
$show_price = '0.00 '.$currency_sign;
}else{
$show_price = $currency_sign.' 0.00';
}
}
return $show_price;
}
Then your expected format will show everywhere
Best regards