Log in

View Full Version : closed thread mod question?


gdavis480
02-05-2008, 02:04 AM
I searched the forum and didn't find anything, so is there a mod that if a admin closes a thread. The moderators and super moderators cant open it or post in it?

Thanks Inadvanced

Reeve of shinra
02-11-2008, 08:02 PM
Id like to find this too.

Guest210212002
02-11-2008, 08:25 PM
Not the cleanest way to do it, but you could use this conditional around the actual controls themselves.


<if condition="is_member_of($bbuserinfo, 6)">
<if condition="!$this->thread['open']">
(open/close button/bits here)
</if>
</if>


Embedded in the original conditional that only shows the mod controls to the proper usergroup in the first place.

So basically:

- If (it's you)
- If (the thread is not open)
- Show the controls

That way nobody will see the controls on closed threads but administrators.