One recommendation, for sites that host wildly different content by category (completely different languages is a good example), is to limit suggested topics to the current category. There is a site setting for this. Also applies to @Rob_Nicholson’s case.
9 Likes
Is it possible to show categories but suppress subcategories in the hamburger menu?
You can hide them using CSS
.hamburger-panel .category-links { display: none; }
2 Likes
This did it for me, since I only wanted to hide the subcategories.
.hamburger-panel .category-links .subcategory { display: none; }
5 Likes