xiasummer
(xiasummer)
1
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
dax
(Daniela)
2
You can hide them with CSS:
.about.admins {
display: none;
}
10 לייקים
xiasummer
(xiasummer)
3
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
SidV
4
The correct class is:
about moderators
Try: .about.moderators
6 לייקים
tobiaseigen
(Tobias Eigen)
7
We now have a site setting:
2 לייקים