Home Forums WoodMart support forum Search box category removal Reply To: Search box category removal

#563461

Hello,

It is possible only with additional custom CSS to hide particular categories by ID field. For example to hide a category with ID 173 use this code.

Add the Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:

.search-by-category, .cat-item-173 { 
    display: none !important;
}

Best Regards.