Tuesday, 28 June 2011

Get Nicely Formated Final Price In Magento


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

1 comment:

  1. Thanks this worked perfectly for me with Magento 1.6.1 and was exactly what I needed!

    ReplyDelete