Remove Filter

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.

1 Like

Hi @SaucyPeach

TRy this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
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!

2 Likes

Amazing, thank you for your help!!