ヘッダーでこのコードを試しました
document.addEventListener("DOMContentLoaded", function() {
setTimeout(() => {
let userTrustLevel = parseInt(Discourse.User.current().trust_level);
if (userTrustLevel < 4) {
document.querySelectorAll(".pin-topic, .unpin-topic").forEach(button => {
button.style.pointerEvents = "none";
button.style.opacity = "0.5";
button.title = "トピックをピン留めする権限がありません";
});
}
}, 1000);
});
そしてCSSで
.d-header-icons .pin-topic,
.d-header-icons .unpin-topic,
.controls .pin-topic,
.controls .unpin-topic {
display: none !important;
}
しかし、信頼レベルが0または1の一般ユーザーはピンボタンをタップでき、それを見ることができます。
デフォルトで、ユーザーが一番下に達したらトピックのピン留めを自動的に解除します。 これはオフです
ユーザーが一番下に達したらトピックのピン留めを自動的に解除します。 これはオフです


