View Full Version : How to hide Tachy (Global Ignore) threads from mods in forumdisplay?
mme42
08-05-2009, 09:20 AM
Does anybody have any idea how I would go about hiding thread titles for globally ignored threads (tachy goes to coventry) from moderators in the forumdisplay? We've been using the coventry for a few users who we don't want to deal with anymore (because banning usually causes them to just create another account). However, the moderators are getting sick of clicking these threads only to see the message about the user being on the ignore list.
It would be nice to have these threads hidden in the forumdisplay from everybody but admins, or even everybody but the ignored user.
I believe I'd need to modify the forumdisplay.php around line 574. I tried a couple things, but nothing has worked so far (I'm not very familiar with PHP). Does anybody have an idea as to exactly what I should change? I'm using vB 3.8.x btw.
Thanks :D
Dismounted
08-06-2009, 06:04 AM
Plugin @ Hook: forumdisplay_query_threadscount
if (!is_member_of($vbulletin->userinfo, 6))
{
$globalignore = '';
}
No need to edit files at all. :)
mme42
08-06-2009, 06:42 AM
Thanks! However, it's not working for me. I added that as a new plug-in at the hook that you mentioned. But, all it seems to do is make globally ignored threads show up (in the forum display thread list) for moderators in sections that they are not assigned to. Then, when you click on the thread, it gives an invalid thread error. But, the globally ignored threads in the moderators assigned section still show up as normal (which is where i'm trying to hide them so moderators don't have to bother with them.)
So it's actually making it worse. Unless I'm missing something? Was I supposed to do something else?
Thanks Dismounted :D
Dismounted
08-06-2009, 07:30 AM
Sorry, screwed up the code (forgot the most important part!), try this instead:
if (!is_member_of($vbulletin->userinfo, 6) AND $Coventry = fetch_coventry('string'))
{
$globalignore = "AND postuserid NOT IN ($Coventry) ";
}
mme42
08-06-2009, 07:45 AM
Thanks! That seems to have worked perfectly :D The first one did seem a bit light on code, but then I don't know PHP....yet :p
vijayninel
12-06-2011, 08:00 AM
Sorry about bumping an old thread, but how can this be modified to hide even posts from non admins? The plugin by Dismounted hides only thread titles not whole posts in showthread. I want to hide even posts by ignored users in showthread.
Thanks.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.