Liquid, JavaScript, themes, sales channels
I'm looking for a way to adjust my product-template.liquid code to hide the product price, the tax included text, and the quantity on any product pages that are tagged with Product Type "Auction".
This is using the Debut theme. Any suggestions would be much appreciated. Thanks!
Solved! Go to the solution
This is an accepted solution.
You can get a list of tags on your product with {{ product.tags }} (docs)
...and you can check if a particular tag exists in that list with the "contains" operator (docs).
...and you can wrap the items you want to hide in an {% unless %} tag (docs) that will only render its content if the condition you give it is not true.
Putting it together, the following is the same as saying "render this content only if my product does not contain the auction tag":
{% unless product.tags contains "auction" %}
<div class="product-single__quantity">
<!-- ...code for quantity selector... -->
</div>
{% endunless %}
You could then do something similar for the other items you want to hide.
Hope that helps!
Andrew.
This is an accepted solution.
You can get a list of tags on your product with {{ product.tags }} (docs)
...and you can check if a particular tag exists in that list with the "contains" operator (docs).
...and you can wrap the items you want to hide in an {% unless %} tag (docs) that will only render its content if the condition you give it is not true.
Putting it together, the following is the same as saying "render this content only if my product does not contain the auction tag":
{% unless product.tags contains "auction" %}
<div class="product-single__quantity">
<!-- ...code for quantity selector... -->
</div>
{% endunless %}
You could then do something similar for the other items you want to hide.
Hope that helps!
Andrew.
Simple solution and it worked like a charm for everything I needed to hide.
Thank you from this coding newbie, Andrew!
i have edited my product-template.liquid to what you showed above but it doesn't seem to be doing anything to my products
code
where does this above code go? I want to remove pricing on certain products throughout the store and this seems the way to do it
User | RANK |
---|---|
21 | |
18 | |
9 | |
7 | |
6 |
Explore the 30-30-30 rule, a dynamic social media strategy for new businesses. Learn how t...
By Trevor Sep 20, 2023Discover how to leverage the often overlooked footer of your ecommerce site to gain custom...
By Skye Sep 15, 2023In this blog, we’ll be shining a light on Shopify Partners, Experts, and Affiliates. Who a...
By Imogen Sep 13, 2023