Hi, currently the product price shows as “$42.00 NZD” (which is excluding GST) and I’d like to include a label that says “+ GST” i.e. “$42.00 NZD + GST”. How can I do this? I am using the Dawn theme. TIA
Hi @joepenman
From your Shopify admin, go to Online Store > Themes.
Find the Dawn theme and click on “Actions” and then "Edit code.
Navigate to the product template file. This could be named something like product-template.liquid.
Look for the section of code responsible for rendering the product price.
Within this section, you’ll want to modify the Liquid code to include the “+ GST” label next to the product price.
{% if product.price %}
{{ product.price | money }} + GST
{% endif %}
Hey @joepenman ,
Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.
Screenshot is for reference only, the correct code to paste is the one shown above.
Thanks a bunch!
