How to hide staff from About page?

I want to edit the “about” of my discourse website.

You see, in About - Discourse Meta we can see

Maybe some websites want to know the admins, but I don’t want people to know. I only want it to be a secret website for a small group.

Any suggestions?

1 Like

You can hide them with CSS:

.about.admins {
    display: none;
}
10 Likes

great, what about hiding the moderator?

I tried

.about.moderator{
display:none;
}

But seems not effective.


Great, you are right, what a silly mistake I’ve made. Here is the right answer.

.about.moderators{
display:none;
}

1 Like

The correct class is:
about moderators

Try: .about.moderators

6 Likes