How do you programmatically get tax rate in magento on product page [closed]
Say you want to programmatically get the VAT tax rate on product page in magento,how do you go about doing this.
I'm not sure how to get the tax rate on its own but if you want to print the product including tax, is this what you are looking for?
$_finalPriceInclTax = Mage::helper('tax')->getPrice($_product, $_product->getFinalPrice(), true);
精彩评论