09/12/2014 at 1:38 pm
#303766
Keymaster
@ Marco
Sorry, but just hiding the name without actually excluding the entries associated to the category is not possible. Well sort of, you could resort to some CSS to do it, but it would not be easy to maintain,
#cn-cmap li.active-result:nth-child(n+2):nth-child(-n+3) {
display: none;
}
The above would hide the 2nd and 3rd items in the list. You could add it to your theme’s custom CSS area, but any time you add or remove a category you would have to adjust the CSS selector accordingly.
Hope that helps!