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
Hi there,
How can I hide a specific Filter option (i.e. Gender) for a specific collection.
I am asking this because there is no possibility to have multiple Filter combinations that can be picked per collection.
Can I use the Custom CSS of a collection to specify to hide?
Website: https://venga-store.com/collections/festival-outfits-women
Theme: Dawn
Thanks for your help!
Solved! Go to the solution
This is an accepted solution.
Hello,
You can hide by custom Css just copy the below code and paste above </body> in theme.liquid file.
Online store >> edit code >> theme.liquid
<style>
.facets__form-vertical details:nth-child(3) {
display: none!important;
}
</style>
I hope it is helpful.
Thank you
This is an accepted solution.
Hello,
You can hide by custom Css just copy the below code and paste above </body> in theme.liquid file.
Online store >> edit code >> theme.liquid
<style>
.facets__form-vertical details:nth-child(3) {
display: none!important;
}
</style>
I hope it is helpful.
Thank you
Hi @miltokas
check this one.
div#shopify-section-template--21622345466188__product-grid .facets__disclosure-vertical.js-filter:first-of-type {
display: none;
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
这样会让所有集合页都被隐藏了