PDA

View Full Version : Show Thread Enhancements - Really Ignored Users in Showthread


vbenhancer
12-17-2009, 10:00 PM
As requested in this thread: vBulletin Community Forum - View Single Post - Ignore function (http://www.vbulletin.com/forum/showthread.php?p=1767992&postcount=11) as you see Wayne's answer, it is possible to completely ignore any posts from users who are in your ignore list...

Without this product, your postbit for an ignored user will look like this:

Installing this product will simply drop this part, which is boring for many. When you ignore someone, you really want it to be ignored, not halfway done.

Wayne suggest to delete the named templates, but i see a problem for moderators and admins... Staff have to see ignored notices, because they are staff who also have to manage ignored users... So my small plugin fix this. It will deactivate these templates when you are not part of staff only.

This is a simple plugin on Showthread, so it will not delete the template, just deactivate it, so you're safe.

New Joe
12-19-2009, 03:12 AM
Works great.
Installed.

Zelda-King
12-19-2009, 03:44 AM
Just what vBulletin always needed! When you ignore someone you want them out of sight and out of mind.

Seems to be working fine... (3.8.4 PL1) :)

New Joe
12-19-2009, 01:48 PM
Yes, I have been waiting for his mod for such a long time.
So glad it finally came along.

ChopSuey
12-25-2009, 01:42 PM
Wow this is nice hehe, installed!

profanitytalker
01-05-2010, 05:28 AM
This looks really nifty. I'm going to have to try this one.

AndrewRich
02-01-2010, 07:13 PM
INSTALLED on mousepad.mouseplanet.com (http://mousepad.mouseplanet.com). Thanks!

New Joe
02-05-2010, 03:45 AM
Any chance of having this made for vB4 version?

AndrewRich
03-23-2010, 04:21 PM
Unfortunately I have to uninstall it. When the ignored user has the latest post in a thread, "View Unread Posts" doesn't work properly--it tries to jump to an invisible post.

I'd post on vbenhancer for support but that site seems to be down.

Morrus
04-21-2010, 09:27 PM
Doesn't work at all. I can still see exactly what I could see before.

Oh, and OP's website doesn't exist.

merk_aus
07-07-2010, 02:57 AM
Just confirming for those interested I have attempted to install this on vbulletin publishing suite 4.0.4 and it works as designed.

AndrewRich
08-12-2010, 10:14 PM
Since I couldn't get around the bug in this mod, I made my own smaller change to postbit_ignore and postbit_ignore_global:

postbit_ignore_global:
Before

<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>

After (just comment out the line)

<!-- <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> --><!-- do not display "View post" link to ignored user -->


postbit_ignore:
Before

<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>

After (just comment out the line)

<!-- <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> --><!-- do not display "view post" link to ignored user -->

Max Taxable
08-02-2011, 05:51 PM
Yeah, when the ignored user is quoted by another user, it still shows anyway. So what good is it?

New Joe
02-11-2012, 04:36 PM
Just confirming for those interested I have attempted to install this on vbulletin publishing suite 4.0.4 and it works as designed.
I've installed it on vb 4.1.10 and it doesn't work.
Would love to see this working for vb 4

Masterix
02-16-2016, 07:47 AM
Since I couldn't get around the bug in this mod, I made my own smaller change to postbit_ignore and postbit_ignore_global:

postbit_ignore_global:
Before

<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>

After (just comment out the line)

<!-- <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> --><!-- do not display "View post" link to ignored user -->


postbit_ignore:
Before

<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>

After (just comment out the line)

<!-- <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> --><!-- do not display "view post" link to ignored user -->


A better way (vB 3.x) ;)

Add:

<if condition="is_member_of($bbuserinfo, 5,6,7)">
<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>

in both templates. :D

So your Staff can see the original.

mindhunter77
02-28-2019, 01:16 PM
Anyway to make this work on forumdisplay as well?