Magento – how to remove decimal value from product price Magento 2

magento-2.1.8price

The price-utils.js solution did not work for me.

I have changed from const DEFAULT_PRECISION = 2; To const DEFAULT_PRECISION = 0; in /vendor/magento/framework/Pricing/PriceCurrencyInterface.php

but, it is working only on the product listing page. I want to remove precision from the entire site.

Best Answer

Please Check https://github.com/lillik/magento2-price-decimal Extension. I think it'll help you.

Related Topic