This will better display a post by a user that is on your ignored list.
Screenshot:
Non-Moderator of Forum:
Moderator of Forum:
As you can see, you only see "Ignored User" in replace of their username, the time & date posted, and you only see 'View Post' and the checkbox if you are a moderator of that forum.
This is much better than what vBulletin currently has in place.
Why?
It gives you the option to remove the user as well as view the post AND it shows the ignored user's username. If you hate the person, but want to see their post, you can just press View Post and having them ignored is POINTLESS. This adds point to the system!
You must do the following template edits:
In the template postbit_ignore
FIND
REPLACE WITH
FIND
REPLACE WITH
Screenshot:
Non-Moderator of Forum:
Moderator of Forum:
As you can see, you only see "Ignored User" in replace of their username, the time & date posted, and you only see 'View Post' and the checkbox if you are a moderator of that forum.
This is much better than what vBulletin currently has in place.
Why?
It gives you the option to remove the user as well as view the post AND it shows the ignored user's username. If you hate the person, but want to see their post, you can just press View Post and having them ignored is POINTLESS. This adds point to the system!
You must do the following template edits:
In the template postbit_ignore
FIND
HTML:
<a style="float:$stylevar[right]" href="showpost.php?$session[sessionurl]p=$post[postid]" target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a>
REPLACE WITH
HTML:
<if condition="$show['inlinemod']">
<a style="float:$stylevar[right]" href="showpost.php?$session[sessionurl]p=$post[postid]" target="_blank" rel="nofollow" onclick="return display_post($post[postid]);">$vbphrase[view_post]</a></if>
FIND
HTML:
<tr>
<td class="alt1">
<if condition="$show['moderated']">
<div style="float:$stylevar[right]"><img src="$stylevar[imgdir_misc]/moderated.gif" alt="$vbphrase[moderated_post]" border="0" /></div>
</if>
<if condition="$show['deletedpost']">
<div style="float:$stylevar[right]"><img src="$stylevar[imgdir_misc]/trashcan.gif" alt="$vbphrase[deleted_post]" border="0" /></div>
</if>
<div class="smallfont">
<phrase 1="$post[username]" 2="profile.php?$session[sessionurl]do=ignorelist">$vbphrase[message_hidden_x_on_ignore_list]</phrase>
</div>
</td>
</tr>
<!-- / main bar -->
</table>
REPLACE WITH
HTML:
<tr>
<td class="alt1">
<if condition="$show['moderated']">
<div style="float:$stylevar[right]"><img src="$stylevar[imgdir_misc]/moderated.gif" alt="$vbphrase[moderated_post]" border="0" /></div>
</if>
<if condition="$show['deletedpost']">
<div style="float:$stylevar[right]"><img src="$stylevar[imgdir_misc]/trashcan.gif" alt="$vbphrase[deleted_post]" border="0" /></div>
</if>
<td class="alt2">
<span style="color:red">Ignored User</span>
</td>
</tr>
<!-- / main bar -->
</table>