Existe alguma maneira de impedir que usuários comuns desfixem tópicos? Estou ciente de que muitos fóruns abusam do uso de fixações, o que provavelmente é o motivo pelo qual o Discourse permite que os membros desfixem, mas eu apenas desejo fixar as informações mais importantes e quero que elas permaneçam fixadas até que um moderador ou administrador as desfixe.
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.
Isso é o que eu uso e se aplica a todos os outros grupos, exceto Staff e Team.
PS: desculpe por ressuscitar postagens “zumbi”, mas outras pessoas ainda podem achar ú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;
}