If you have a Top Level Category:
Hidden
Then subcats:
Manufactuer 1
Manufactuer 2
Manufactuer 3
Then turn off the Hidden Category ... that marks all as status 0
Now, go to the subcategories and turn them back on ...
So the Top Level is hidden ... but the subcategories are not ...
Since the Top Level does not show, it will not show in the listings ...
However, then you still need to adjust things for searches ...
Another method is to edit the products table ...
If the master_categories_id for the products matches the categories_id that is turned OFF or status 0 ... then you could run the command:
Where XX is the matching master_categories_idPHP Code:UPDATE products SET products_status = 1 where master_categories_id = XX;
Or, you could do the opposite ... just turn off the Categories Status manually ...
PHP Code:UPDATE categories SET categories_status = 0 where categories_id = XX;



