The Arcive of vBulletin Modifications Site. |
|
Hide banned user's post Details »»
|
|||||||||||||||||||||||||
Removed
Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
Works great using vb4.1.3... I changed the message a little for more my own reasons using an image i made specifically for one of my sites...
![]() Very simple: Code:
$my_banned_ids = array(8);/* Banned usergroup ids */
if (THIS_SCRIPT == 'showthread') {
if (isset($post['usergroupid']) && in_array($post['usergroupid'], $my_banned_ids)) {
$post['title'] = 'User is banned';
$post['message'] = '<img src="/images/Your image Here">';
}
}
|
|
#3
|
||||
|
||||
|
vBulletin has an option to delete all users threads after you banned him so why an extra addon? What can the addon do what cannot be done with vbulletin already?
|
|
#4
|
|||
|
|||
|
Must have missed that option... tell us where it is... and also I used this so I could add an image... Banned users love to see an image LOL...
One Touch Ban & Clean-up will do this but its a mod not an option built into vBulletin... |
![]() |
|
|