PDA

View Full Version : Hide posts from "ignored" users?


gsk8
01-26-2017, 04:21 PM
Is there a mod that hides or blocks ignored users from quoting a post?

MarkFL
01-26-2017, 04:29 PM
Do you mean something that would prevent people from quoting the posts of those who have them on their ignore list?

Snowhog
01-26-2017, 04:42 PM
I don't think this would be possible unless the blocked user were globally blocked. Blocking a user from being seen is on a 'per user basis'.

gsk8
01-27-2017, 03:32 AM
Do you mean something that would prevent people from quoting the posts of those who have them on their ignore list?

Yes :)

MarkFL
01-27-2017, 04:09 AM
Okay, create a plugin as follows:

Product: vBulletin

Hook Location: postbit_display_complete

Title: Prevent Users From Access To Quote Button Of Users Ignoring Them

Execution Order: 5

Plugin PHP Code:

if (in_array($vbulletin->userinfo['userid'], explode(' ', $post['ignorelist'])))
{
$post['replylink'] = 0;
$show['multiquote_post'] = 0;
}

Plugin is Active: Yes

Bear in mind that this will not prevent more savvy users from manually entering the text to simulate quoting a user's post, but this will make it more difficult. :)

gsk8
01-27-2017, 05:14 PM
Wow thanks Mark!