Sunday, May 1

How to get product price excluding tax in Magento

In Magento default price shown including Tax.

If you want 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()) ?> 

Hope it Helps.... Thanks!!!!

No comments:

Post a Comment