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
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
@rootsllp , do this to fix it in 20 seconds:
.template-collection .filters-toolbar__item-wrapper > *:nth-child(1){
display: none !important;
}
Kind regards,
Diego
Please add the following code at the bottom of your assets/theme.css file.
.filters-toolbar__item-wrapper .filters-toolbar__item-child:nth-child(1) {
display: none;
}
Hope this works.
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;
}