Quote:
Originally posted by WoodiE
No what i want is to hide the post 100% in a way you dont even know that, that member has posted there.
vBulletin at default will hide the TEXT of the member and give back a message of "This member is on your ignore list. Click Here to view the post" or something along those lines.
I dont even want to see that, hide it in the way you dont even see his name come up.
-WoodiE
|
Here ya go:
in
SHOWTHREAD.PHP
FIND:
PHP Code:
$postbits .= getpostbit($post);
REPLACE WITH:
PHP Code:
//don't get postbit if ignored post
if ($ignore[$post[userid]] AND $post['userid'] != 0) {
// do nothing
} else {
$postbits .= getpostbit($post);
}
Ok, so the if statement is kinda silly with the "do nothing" block, but it's more logical to me this way.