Log in

View Full Version : Hide Threads Posted By Ignored Users (in search results)


Borgs8472
10-11-2005, 10:00 PM
This is arguably a hack part 2 of 2, but I thought I'd make it it's own thread. I based the changes from the Hide Threads Posted By Ignored Users (https://vborg.vbsupport.ru/showthread.php?t=64231) by tjdrico but with similar changes applied to the search.php rather than just the forumdisplay.php

Open search.php

Find:
'threadbit', // result from search threads
'newreply_reviewbit_ignore'

Replace with:
'threadbit', // result from search threads
'newreply_reviewbit_ignore',
'forumrules',
'threadbit_ignore'

Find:
eval('$searchbits .= "' . fetch_template('threadbit') . '";');

and replace with:

if ($ignore["$thread[postuserid]"])
{
eval('$searchbits .= "' . fetch_template('threadbit_ignore') . '";');
}
else
{
eval('$searchbits .= "' . fetch_template('threadbit') . '";');
}

Use this hack in conjunction with the previously mentioned hack and you will not ever see your ignored people's threads!

dndog
10-13-2005, 01:51 AM
I believe you have to put this hack in a text file as well, as per the vB.org hack rules.

Great hack though. :nervous:

Borgs8472
10-13-2005, 06:29 AM
^ ^
+text file