Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello!
I would like to remove/ stop the price from appearing on a specific collection's product grid.
I'm not sure where that code is located even after using the inspect tool :')
Can anyone help me with this?
If it helps I use the new Sense theme!
Solved! Go to the solution
This is an accepted solution.
Hi @httpcal ,
You can follow the instruction below:
1. Go to Online Store->Theme->Edit code
2. Find file "theme.liquid"->find "</body>" and paste below code at the before </body>:
{% if template contains 'collection' and collection.handle == 'work' %}
<style>
.card-information > .price {
display: none !important;
}
</style>
{% endif %}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Hello There,
Please share your store URL and password.
So that I will check and let you know the exact solution here.
Hi!:) The website is avecamourstudio.com and the password is clogha !
Hi @httpcal ,
Please share your store URL and if your store is password protected then please provide password too.
So that we can help you.
Thank you.
Plese share url of the collection page / i'll share code to you !
@httpcal Can you please send me your store url?
Welcome to the Shopify community!
Thanks for your good question.
Please share your store URL.
So that I will check and let you know the exact solution here.
Hello!:) @AvadaCommerce @Zworthkey @DelightCart @Abhay_babu
Thank you all for anwering so quickly!! The website is avecamourstudio.com and the password is clogha !
Hi @httpcal ,
You can follow the instruction below:
1. Go to Online Store->Theme->Edit code
2. Asset->/component-card.css->paste below code at the bottom of the file:
.card-information > .price {
display: none !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Thank you @AvadaCommerce ! So that worked but is there a way to make it more specific to one collection only? I only want the product grid under the 'work' tab/menu item to not show price :')
This is an accepted solution.
Hi @httpcal ,
You can follow the instruction below:
1. Go to Online Store->Theme->Edit code
2. Find file "theme.liquid"->find "</body>" and paste below code at the before </body>:
{% if template contains 'collection' and collection.handle == 'work' %}
<style>
.card-information > .price {
display: none !important;
}
</style>
{% endif %}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Absolute legend! Thank you so much for the help! 🙂
Could you help me too? I cannot seem to get it to work on the specific collections I need