Normally in magento Price shown including Tax.But if you want to show Price Excluding Tax then you need to call the following helper class.
<?php echo $this->helper('checkout')->formatPrice($_product->getPrice())
// For Special Price write this
echo $this->helper('checkout')->formatPrice($_product->getSpecialPrice()) ?>
Thanks a lot! I have spent the last 3 hours struggling over this!
ReplyDeleteThanks, got the price without tax
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDelete