هل توجد أي طريقة لمنع المستخدمين العاديين من إلغاء تثبيت المواضيع؟ أنا على دراية كاملة بأن العديد من المنتديات تساءل في استخدام التثبيت، وهو ما يفسر على الأرجح سبب سماح Discourse للأعضاء بإلغاء التثبيت، لكنني أرغب فقط في تثبيت المعلومات الأهم وأريد أن يبقى مثبتًا حتى يقوم مشرف أو مدير بإلغائه.
Sure, you can disable the site setting automatically unpin topics that is the setting used to globally enable/disable the feature.
3 إعجابات
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.
إعجابَين (2)
هذا ما أستخدمه وينطبق على جميع المجموعات الأخرى ما عدا الموظفين والفريق.
ملاحظة: آسف لإحياء منشورات “زومبي”، لكن قد يجدها الآخرون مفيدة.
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;
}
إعجاب واحد (1)