Tags which only staff can use!

I want to create/reserve the tag “feature” to be used only for stuff member.
Is that possible?

1 Like

Yes, there are settings admin > settings called min trust level to tag topics and min trust to create tag that can be set to staff.

You can also choose to hide tags from normal users as well, to do this you can either create staff-only tag groups (from your /tags page) or hide all tags from non-staff members with CSS… something like

body:not(.staff) {
  a.discourse-tag {
    display: none;
  }
}
5 Likes