Hello Friends I want to remove the tax of the product in specific condition.I tried to set taxclass id as 0 but it adds the total of tax and product orice I want to completely remove the tax please help . Currently this is my code which I used to remove tax
$tax=Mage::helper('checkout')->getQuote()->getShippingAddress()->getData('tax_amount');
$inc_tax=$product->getPrice();
$exc_tax=$inc_tax-$tax;$product->setPrice($exc_tax);
$finalPrice=$exc_tax;
$product->setTaxClassId(0);
Please help me .