How to Pin topic to top?

Hi,

We are attempting to pin topic to top of each category, but for other users, it doesn’t get pinned to top. Have read about banner, but don’t see the option in the admin menu (wrench). How can we force the topic (e.g category x instruction) so that user can’t unpin it? THANKS

Thanks for reply.
I’m unclear. Please look at the pinned topic below. It can’t be unpinned. This is what we like to do. This requires custom css???

bug - Discourse Meta

This topic can be unpinned by users (and even got auto-unpinned for me after reading it, because I’ve enabled that):

1 Like

You can hide the button Pinned-Unpinned and the pin icon with CSS
Something like this should work:

.pinned-options {
    display: none;
}
.topic-status .fa.fa-thumb-tack {
    display: none;
}

If your users can’t see the pin icon they can’t click on to unpin a topic, the same thing if they can’t see the button.

(If you really really really want to do it)

3 Likes