制限の固定解除

一般ユーザーがトピックのピン留めを解除できないようにする方法はありますか?多くのフォーラムがピン留めの機能を乱用していることは承知しています。そのため、Discourseではメンバーがピン留めを解除できるようになっているのでしょう。しかし、私は最も重要な情報のみをピン留めし、モデレーターまたは管理者が解除するまでその状態を維持したいと考えています。

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.

これは私が使用しているもので、Staff と Team を除くすべてのグループに適用されます。
PS: 「ゾンビ」投稿を蘇らせてしまい申し訳ありませんが、他の人々にも役立つかもしれません。

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;
}