Shopify themes, liquid, logos, and UX
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
Solved! Go to the solution
This is an accepted solution.
Hey @joepenman,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
span.price-item:after {
content: '+ GST';
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
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 %}
<div class="product-price">
<span class="price">{{ product.price | money }}</span> <span class="gst-label">+ GST</span>
</div>
{% endif %}
This is an accepted solution.
Hey @joepenman,
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
span.price-item:after {
content: '+ GST';
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
Thanks a bunch!
Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025