Magento – Display Prices with/without Tax Based on Customer Group

customer-groupmagento-1.8

I currently have 3 groups, Group A which tax applies to and the other 2 (Group B & C) which tax doesn't apply.

I would like to know is it possible so that when not logged in or logged in as Group A the prices are displayed with the tax applied everywhere. However when logged in as Group B & C the prices are displayed without tax everywhere?

Best Answer

I do not think this is possible out of the box but then class Mage_Tax_Helper_Data has all the functions to do with display prices with or without tax. For example displayPriceIncludingTax and displayPriceExcludingTax, though there are more.

What you could do is rewrite this helper and change these functions to match your need. Though tax display is a slippery slope so make sure you test this a lot :)

Related Topic