• Resolved dincerdirlik

    (@dincerdirlik)


    Hello; I am using your plugin’s directorist, I add a real estate ad, I write 10,000,000 because I live in Türkiye, it adds 2 00 at the end of 10,000,000.00, how can I fix this?

Viewing 1 replies (of 1 total)
  • Plugin Support Mahfuzul Alam

    (@mahfuz87)

    Hello

    Thank you for reaching out.

    Please use the following custom code –

    add_filter( 'atbdp_format_amount', function ( $default, $price ){
    if( ! $price ) {
    return $default;
    }
    return number_format_i18n( (float) $price, 0 );
    }, 10, 2);

    You can insert the code at the end of the functions.php file in the child theme folder or you can use a code snippet plugin to implement this code.

    Kind regards

Viewing 1 replies (of 1 total)

The topic ‘[NSFW] pricing error – directorist’ is closed to new replies.