Hi,
Can I remove a filter from a specific collection page and keep it on others?
I want to remove Material filter from Couples collection but keep it on another.
A user needed to remove the “Material” filter from a specific collection page (Couples collection) while keeping it visible on other collections.
Solution provided:
display: none !important to hide the Material filter button and panel specifically on the /collections/for-couples pageOutcome:
The solution was successfully implemented and resolved the issue. The user confirmed it worked as intended.
Hi,
Can I remove a filter from a specific collection page and keep it on others?
I want to remove Material filter from Couples collection but keep it on another.
Hi @SaucyPeach
TRy this one.
section[data-collection-link="/collections/for-couples"] #c-accordion--6__main > button:nth-child(3),
section[data-collection-link="/collections/for-couples"] div#c-accordion__panel--6__main-list-2 {
display: none !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Amazing, thank you for your help!!