currently my price are not showing including or excluding GST. How can I make a word saying its excluding GST next to the price in the product page? Many Thanks!!!
hello there
To display a message indicating that your product prices exclude GST (Goods and Services Tax) in your Shopify store, you can add some code to your theme’s product.liquid template file.
Here are the steps you can follow:
-
In your Shopify theme editor, navigate to the “Templates” folder and open the “product.liquid” file.
-
Locate the code that displays the product price. It may look something like this:
{{ product.price | money }}
Add the following code immediately after the product price code:
Excludes GST
- Save the changes to the “product.liquid” file.
This code adds a message indicating that the product price excludes GST next to the product price on the product page.