vote up 0 vote down star

Hi there,

I have set up my products so that their price is inclusive of Tax.

However when I get to the Checkout page, the tax is being added to the Product Price. Where really it should only be there as a summary.

Anyone know how to fix this?

Regards, Fiona

flag
1  
It appears to be a support question regarding magentocommerce.com ... ServerFault or SuperUser seems more appropriate. – Godeke Oct 8 at 16:14
Almost any customization of Magento requires writing code of some kind, so it belongs here as much as anywhere else. – Alan Storm Oct 12 at 18:36

3 Answers

vote up 1 vote down

From a high level the answer is to not setup your prices inclusive of tax. The Magento system expects you to setup prices without tax. All calculations in the system will be based on that.

If you want prices to display with tax, you should override and/or create new Blocks and phtml templates that display price information. You want to change what is shown to the user, and not change what is used in system calculations.

link|flag
vote up 0 vote down

You'll need to find the appropriate location in the price.phtml that displays the price and use a similar line of code to display JUST the product price without any tax.

/app/design/frontend/(your_store)/(your_template)/template/catalog/product/price.phtml

<?php echo Mage::helper('core')->currency($_price,true,false) ?>
link|flag
vote up 0 vote down

Go into your tax rules and remove them all. If there are no tax rules, it can't charge any tax.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.