Ex Vat and Inc Vat Prices on Product when Tax is Ticked

Ex Vat and Inc Vat Prices on Product when Tax is Ticked

Graham_Crocker
Visitor
2 0 0

Hi

 

We are trying to build a new theme using Enterprise.  We would like to display an Ex Vat and Inc Vat price on all product pages.  I can add using the formula to get it too display on all products. 

 

What I am struggling with is we sell some products that are 0% vat.  These products are unticked charge tax in the product setup. 

 

I am hoping we can code the it so if the charge Tax on product is unticked it can display the price with VAT Free.

 

Any help would be much appreciated.

 

Thanks

Reply 1 (1)

EcomGraduates
Shopify Partner
794 68 113

use  Liquid code to check if the product is taxable and then conditionally display the "Ex VAT" and "Inc VAT" prices or a "VAT Free" message 
example  

 

{% if product.taxable %}
  {% assign ex_vat_price = product.price | divided_by: 1.20 %}
  {% assign inc_vat_price = product.price %}
  <p>Ex VAT: {{ ex_vat_price | money }}</p>
  <p>Inc VAT: {{ inc_vat_price | money }}</p>
{% else %}
  <p>This product is VAT Free</p>
{% endif %}

 

 

 

 

  • Check if the product is taxable: Use the product.taxable attribute to check if the product is taxable or not.

  • Calculate and Display Prices: Use Liquid to display the Ex VAT and Inc VAT prices if the product is taxable, or show a "VAT Free" message if it's not.

 


 If this fixed your issue, likes and accepting as a solution are highly appreciated
|  Build an online presence with our custom-built Shopify Theme: EcomifyTheme
|  Check out our reviews: Trustpilot Reviews
|  We are Shopify Partners: EcomGraduates Shopify Partner