I see the banner feature as a Staff only feature, since it basically highlights sitewide a message.
Can pin topic as banner be disabled for anyone other than staff? Thank you.
They are level 4 because I need them to be able to “moderate” their own boards, but I would not want them to post a sitewide banner.
I’m ok with them pinning posts under their own assigned boards, but not pin globally or set banners.
I experimented a bit with hiding some actions from Trust Level 4 back in Dec 2017. Not perfect but it might be good enough as a temporary approach. eg. Choose selectors as per need.
/* personal messages display none wrench leaders */
body:not(.staff):not(.archetype-regular) .toggle-admin-menu {
display: none;
}
/* personal messages display none individual buttons leaders */
/* pin and archive are n/a */
body:not(.staff):not(.archetype-regular) .topic-admin-multi-select
, body:not(.staff):not(.archetype-regular) .topic-admin-close
, body:not(.staff):not(.archetype-regular) .topic-admin-visible {
display: none;
}
/* topics display none individual buttons leaders */
/* topic-admin-close and topic-admin-visible not in this example set */
body:not(.staff):not(.archetype-private_message) .topic-admin-multi-select
, body:not(.staff):not(.archetype-private_message) .topic-admin-pin
, body:not(.staff):not(.archetype-private_message) .topic-admin-archive {
display: none;
}