Remove Decimal Points from Price

Posted Date: December 30, 2010

Step 1:

Change the following file to remove the decimal points:

Lib/Zend/Currency.php

In the “toCurrency” function add the following line:

$options['precision'] = 0;

Step 2:

Change the following price to round the price:

app/code/core/Mage/Core/Model/Store.php

Change the method “roundPrice” to the round the prices in product listing and view pages like this:

return round(ceil($price), 0);

Please let me know if you have any questions :)