Hi @guidetour
Thank you for asking.
Please use the following code in the end of the “functions.php” file in your currently active child theme folder. If you do not have any child theme please install and activate one. You can also use any code snippet plugin to implement the code as well.
add_filter( 'atbdp_format_amount', 'directorist_custom_modify_price_format', 10, 2 );
function directorist_custom_modify_price_format( $default, $price ){
if( ! $price ) {
return $default;
}
return number_format_i18n( $price );
}
Please contact our support channel if you need help with this. https://prnt.sc/cKSW-z2RTXrs
Kind Regards
Thread Starter
Pritam
(@guidetour)
Not working this code, I am use with Snippet Plugin.
After insert this code my website is showing blank, full blank white page
Hi @guidetour
This code is working on our side and showing the results as expected – https://prnt.sc/ENXh8dzVF8zT
Please contact our support channel if you need help with this. https://prnt.sc/cKSW-z2RTXrs
Kind Regards