How can I remove the 'Filter By' option on the Debut theme?

Hi, I would like to remove the 'Filter by" option on my website. I saw a post from 2018 about it but there is no option for it under Collections. Any help would be appreciated!

Theme - Debut

Store - rootsllp.myshopify.com

1 Like

@rootsllp , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
.template-collection .filters-toolbar__item-wrapper > *:nth-child(1){
    display: none !important;
}

Kind regards,
Diego

2 Likes

@rootsllp

Please add the following code at the bottom of your assets/theme.css file.

Show More

.filters-toolbar__item-wrapper .filters-toolbar__item-child:nth-child(1) {

Show More

display: none;

Show More

}

Hope this works.

1 Like

hello @rootsllp

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.filters-toolbar__item-wrapper .filters-toolbar__item-child:nth-child(1) {
display: none;
}
1 Like