Page 1 of 1
Only show RRP final amount (no tax display) on listing, but show tax on invoice
Posted: Wed Sep 04, 2019 9:50 pm
by Nathaniel2019
As the title states, is this possible.
I would like the products on my website to show the total amount including VAT for example without it showing the price less VAT but on the order invoice I would still need customers to see the VAT difference.
Re: Only show RRP final amount (no tax display) on listing, but show tax on invoice
Posted: Wed Sep 04, 2019 10:08 pm
by by mona
On the categories page you can add to the stylesheet.css
.price-tax {
display: none !important;
}
same for featured etc ...
On the product page you probably need to do that manually, personally I would add the class price-tax and use css, but you can also {# comment out #} on the page itself
catalog/view/theme/default/template/product/product.twig
Re: Only show RRP final amount (no tax display) on listing, but show tax on invoice
Posted: Wed Sep 04, 2019 10:38 pm
by Nathaniel2019
Hello
Thanks for your reply.
I am using Journal theme but I will try the .css variant to not display the tax class and assign the tax class to my products. None formally listed yet as still in the process of making the store.
Thanks again.