Home › Forums › WoodMart support forum › Search box category removal › Reply To: Search box category removal
May 6, 2024 at 10:43 am
#563461
Aizaz Imtiaz Awan
Keymaster
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.