Add code

Showing posts with label remove decimal points. Show all posts
Showing posts with label remove decimal points. Show all posts

Thursday 8 October 2020

How we will remove the decimal points from the price in Magento2 website?

Override the following file from the following path `vendor/magento/module-catalog/view/base/web/js/price-utils.js` then change the value of precision on line 38 as the following changes:

from

    var precision=isNaN(format.requiredPrecision=Math.abs(format.requiredPrecision)) ? 2 : format.requiredPrecision,

to

    var precision=0

Friday 2 October 2020

Magento 2: How to remove decimal points from the price

 You need to override vendor/magento/module-catalog/view/base/web/js/price-utils.js and change the value of precision on line 38:

from

    var precision = isNaN(format.requiredPrecision = Math.abs(format.requiredPrecision)) ? 2 : format.requiredPrecision,

to

    var precision = 0

Magento : 404 error is showing admin page

Hello, Sometimes we may get the error on admin page once done with the Magento installation. In that scenario, we have to do the following: ...