Get Nicely Formated Final Price In Magento

[php]
$_coreHelper = $this->helper(‘core’);
$_taxHelper = $this->helper(’tax’);
$_finalPriceInclTax = $_taxHelper->getPrice($_product, $_product->getFinalPrice(), true);
$_finalPriceFormated = $_coreHelper->currency($_finalPriceInclTax,true,false);
echo $_finalPriceFormated;
[/php]

Leave a Comment

Your email address will not be published. Required fields are marked *

*