On my forum, we use category specific moderators a lot, however, these usually overlap with existing moderators. I was wondering if there was a simple way to hide these specific categories from the about page, and maybe just hide them under Our Moderators
You can hide the “Our Moderators” section with the following CSS (to be added under admin > customize > themes)
.about.moderators {
display: none;
}
Hiding an individual category section seems a bit trickier because we don’t distinguish them from each other… you could hide them all with
.about.category-moderators {
display: none;
}
or hide an individual category with
.about.category-moderators:nth-of-type(2) {
/* Hides the second category moderator section */
display: none;
}
The downside of this is that additional categories may require changing the CSS because it relies on the order they appear.
To make this easier in the future, I’ve just added a class to the moderator sections so they can be distinguished from each other more specifically. So the next time your site is updated (within the next couple of weeks). You’ll be able to do something like this
.about.moderators-site-feedback {
/* Hides the site feedback moderators */
display: none;
}