cancel
Showing results for 
Search instead for 
Did you mean: 

excluding tax next to price

   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

excluding tax next to price

Hello, I would like to know if it is possible to write excluding tax, next to the price on all my products on the store

 

Thanks in advance

Nathan

2 REPLIES 2

Re: excluding tax next to price

Hi Nathan,

 

Go to file - 

app/design/frontend/YOUR_PACKAGE/YOUR_THEME/template/catalog/product/price.phtml

 

 

If you have not yet created an override file for your theme, you can copy the file from 

app\design\frontend\base\default\template\catalog\product\price.phtml

 

 

In this file look for the condition  

<?php else: // excl. ?>

 Under this condition look for the price span & after that add following code to display exclusive tax text.

 

 

<span class="NAME_YOUR_SPAN"><?php echo $this->__("Excl Tax") ?></span>

 

 

 

Re: excluding tax next to price

Thanks for your reply,

Not too sure what part i need to change so here is the code i have

undefined