Hey all,
One of my client sites has a site that uses Wholesale Order Form for those customers to log in and purchase products at a discount rate.
They are wanting to show a tax exclusive price for the product and when they checkout it shows that total tax excluded price then the tax amount below.
I’m thinking logically it could just be a case of :
{% if customer.tags contains “wholesale” %}
Something here to display the tax exclusive price
{% endif %}
Is this at all possible?