3

How can i get the tax rule name applied on my product.

I have tried getfulltaxinfo() but it is getting me rate & all stuffs but not the name of tax rule that is applied. Is there any way i can get the tax rule name.

Nilesh Gajare
  • 6,302
  • 3
  • 42
  • 73

1 Answers1

3

You can get tax class name with following code:

$taxClassId = $_product->getTaxClassId();
$taxClassName = Mage::getModel('tax/class')->load($taxClassId)->getClassName();
Gerard de Visser
  • 7,590
  • 9
  • 50
  • 58