Hi @sunardo
There should be a space between currency and the amount, please find the source of currency in helper file located below
/root/app/helpers.php
function source
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;
}
Best regards