Liquid, JavaScript, themes, sales channels
Hi,
I tried some of the solutions in the community but couldn't find one that worked. I want to hide prices on the Services Parts collection template in Symmetry theme. Could I get help? Something along the lines of:
{% if template.name == "collection.service-parts" %}
{% style %}
.grid-product__price {
display: none !important;
}
{% endstyle %}
{% endif %}
https://time-bicycles-america.myshopify.com/
Solved! Go to the solution
This is an accepted solution.
oh sorry for that issue can you try this code
1. Go to Online Store->Theme->Edit code
2. Asset->/theme.css ->paste below code at the bottom of the file.
#shopify-section-template--15783231422655__main-collection .grid-product__price {
display: none;
}
Hi @chels_grove
Kindly try the below code.
{% if collection.handle == "service-parts" %}
{% style %} .grid-product__price { display: none !important; } {% endstyle %}
{% endif %}
This is an accepted solution.
oh sorry for that issue can you try this code
1. Go to Online Store->Theme->Edit code
2. Asset->/theme.css ->paste below code at the bottom of the file.
#shopify-section-template--15783231422655__main-collection .grid-product__price {
display: none;
}
That worked! Thanks.
Hi @KetanKumar I have the same issue, but your code is not working for me. Can you help?
oh sorry for that issue can you please send store url so i will check and let you know
Hi @KetanKumar I have a similar issue, I want to hide the prices from this collection: https://shop.graduprint.de/collections/shop
However, I cannot locate the "theme.css" file in Symmetry. Only .js and .liquid
Thanks for your help!
Hi @Lukas23
You can add the below CSS to styles.css to fix the issue
#shopify-section-template--16084328251660__main .product-price {
display: none !important;
opacity: 0;
}
Thanks
Sheesh B
Hello @chels_grove
Add below code in theme.liquid above </body>
{% if collection.handle contains 'service-parts' %}
<style>
.grid-product__price { display: none; }
</style>
{% endif %}
User | RANK |
---|---|
38 | |
26 | |
13 | |
11 | |
8 |
Transform this holiday season into a shopping spree. Plus, learn how to effortlessly open ...
By Jasonh Dec 8, 2023Make the shift from discounts to donations, and witness your business not only thrive fina...
By Holly Dec 4, 2023On our Shopify Expert Marketplace, you can find many trusted third party developers and fr...
By Arno Nov 27, 2023