Esiste un modo per impedire agli utenti regolari di fissare i topic? Sono ben consapevole che molti forum abusano dell’uso dei pin, il che è probabilmente il motivo per cui Discourse consente ai membri di rimuoverli, ma desidero fissare solo le informazioni più importanti e voglio che rimangano fissate fino a quando un moderatore o un amministratore non le rimuove.
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.
Questo è ciò che uso e si applica a tutti gli altri gruppi tranne Staff e Team.
PS: scusa per aver rispolverato i post “zombie”, ma potrebbe essere ancora utile per altre persone.
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;
}