I will keep this simple, if you want to ‘echo’ a total price inc VAT – the code below is what you need.
Advertisements
$_coreHelper = $this->helper('core');
$_taxHelper = $this->helper('tax');
echo $_coreHelper->currency($_taxHelper->getPrice($_product, $_product->getFinalPrice(), true), true, false);
Comments are closed