MyBB Community Forums

Full Version: Hide unsubscription option from one specific forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!



I am trying to configure some things related to thread and forum subscriptions. I already made automatic subscriptions for everyone to every thread and forum, and they can unsubscribe whenever they want.



Now I want that in one specific forum, users won't be able to unsubscribe. This is a forum created for very important information sent by the "directors" of the forum.



How can I do something like that?



Thanks in advance.
if you are referring to "Unsubscribe from this forum" link available at top of threads list then
in general, we use templates conditionals plugin for such requirements

forum admin panel >> Templates & Style >> Templates >> your theme templates
>> Forum Display Templates >> forumdisplay_threadlist_subscription

after installing templates conditionals plugin
at the beginning of code you can add <if $fid != x then>
and at the end of the template code you can add </if> & save template

note: x is forum id (number) in above given code

[MyBB Templates System]
Thank you so much! I'll do it right now.