- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2016
10:10 AM
07-06-2016
10:10 AM
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-06-2016
10:39 PM
07-06-2016
10:39 PM
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>
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2016
12:27 AM
07-07-2016
12:27 AM
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