Changing the "Tax included" info on each product page into "VAT included"

Hello, It is probably very simple to change yet I do not find where it is located in the code.

I’d like to change the “tax included” text on each of my products pages, existing and futur one of course.

The new text will be “VAT included”

Shop link : https://0e0f82.myshopify.com/

Hello @GadVenin

You’ll need to modify the theme’s code.

  1. Online Store > Themes.

  2. Locate the Dawn theme and Actions > Select >Edit Code>

  3. theme editor, navigate to the “Sections” and open the “product-template.liquid” file.

  4. Find for the following line of code:

{{ 'products.product.price.sale_price_with_tax' | t }}
  1. Replace the above line with the following code:
{{ 'products.product.price.sale_price_with_vat' | t }}
  1. Save the changes you made to the theme file.

  2. Now, navigate to the “locales” directory in the theme editor and open the language file that corresponds to your primary language (e.g. en.default.json for English).

  3. Search for the “products.product.price.sale_price_with_tax” key in the language file.

  4. Replace the existing translation with “VAT Included” as follows:

1 Like

Hello, there is nothing called product-template.liquid

Hello @GadVenin

theme editor, navigate to the “Sections” and open the “main-product.liquid” file.

Yep found it, but still nothing here

1 Like