Restricciones para desanclar

¿Existe alguna forma de evitar que los usuarios regulares desanclen los temas? Soy muy consciente de que muchos foros abusan del uso de los anclajes, lo cual probablemente sea la razón por la que Discourse permite a los miembros desanclar, pero solo deseo anclar la información más importante y quiero que permanezca anclada hasta que un moderador o administrador la desancle.

Sure, you can disable the site setting automatically unpin topics that is the setting used to globally enable/disable the feature.

But users can still click the X and unpin the message right?

Yes, but only if they know that by clicking on the pin icon something changes.

Ah! And you know how to hide that button with CSS.

Is there a way to prevent this entirely without simply hiding the button with css?

Nope. Hide the button with CSS is the only way.

Esto es lo que uso y se aplica a todos los demás grupos, excepto a los de Staff y Team.
PS: perdón por revivir publicaciones “zombis”, pero es posible que a otras personas aún les resulte útil.

body:not(.staff) #topic-footer-buttons .pinned-button,
body:not(.primary-group-team) #topic-footer-buttons .pinned-button{
    display: none;
}

body:not(.staff) #topic-footer-buttons .pinned-button:not(.is-hidden)+.topic-notifications-button,
body:not(.primary-group-team) #topic-footer-buttons .pinned-button:not(.is-hidden)+.topic-notifications-button {
    margin-top: 1em;
}