Back to vBulletin 3.0 Add-Ons

Hide Threads Posted By Ignored Users
Mod Version: 1.00, by tjdrico

This modification is in the archives.
vB Version: 3.0.0 Rating: (0 vote - 0 average) Installs: 17
Released: 22 Apr 2004 Last Update: Never Downloads: 6
Not Supported  

My posters feel that ignoring a user should mean ignoring them. This was easy in the posts view because I simply deleted the contents of postbit_ignore. However, there wasn't an equivalent for the thread view, so after a search on here I came up with the following mini-hack that will hide the threads from
ignored users in the thread view.

Step 1 - add a new template:

Title: threadbit_ignore
Template: <!-- hide threads started by ignored users. Nothing to see here -->

(or just leave it empty if you prefer, but the comment reminds you what it's for)

Step 2 - edit file:

Open: forumdisplay.php

Find:
PHP Code:
        'forumrules' 
Replace with:
PHP Code:
        'forumrules',
        
'threadbit_ignore' 
Find:
PHP Code:
                eval('$threadbit .= "' fetch_template('threadbit') . '";'); 
Replace with:
PHP Code:
                if ($ignore["$thread[postuserid]"])
                {
                    eval(
'$threadbit .= "' fetch_template('threadbit_ignore') . '";');
                }    
                else
                {
                    eval(
'$threadbit .= "' fetch_template('threadbit') . '";');
                } 
Save & Close

Your users should now live in blissful ignorance of those they've ignored. My apologies if I have duplicated another hack, but I did search and didn't find anything.

Download

This modification is archived and cannot be downloaded.

Similar Mods

Hide ignored users' threads vBulletin 3.5 Template Modifications
Hide Threads Posted By Ignored Users (in search results) vBulletin 3.0 Full Releases
Hide Threads from Ignored Users vBulletin 2.x Full Releases

vblts.ru supports vBulletin®, 2022-2024