How do I filter parental categories?
-
Hi, how do I make it possible to filter only parental categories on this site? I don’t need child categories. I just need to have parents.
Attachments:
You must be
logged in to view attached files.
Hello,
I saw the screenshot you attached and visited your website. Unfortunately, there is no such option in theme settings for that you need to use Custom CSS for that.
It is possible only with additional custom CSS to hide particular categories by ID field. For example to hide a category with ID 73 use this code
.search-by-category .cat-item-73 { display: none; }
The above code will remove the category whose id is 73.
Best Regards.