• Resolved Pritam

    (@guidetour)


    Price show amount with .00

    How to remove .00 digit, like only amount this type (2600), now show (2600.00). Please guide me how to remove (.00)

    Thank you

    https://prnt.sc/sftwOI83HpIX

    • This topic was modified 5 months, 3 weeks ago by Pritam.

    The page I need help with: [log in to see the link]

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

    (@mahfuz87)

    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

    • This reply was modified 5 months, 3 weeks ago by Mahfuzul Alam.
    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

    Plugin Support Mahfuzul Alam

    (@mahfuz87)

    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

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.