Disable Signature Per User Plugins
Mod Version: 1.00, by vijayninel
vB Version: 3.8.7 |
Rating: (3 votes - 5.00 average) |
Installs: 8 |
Released: 26 Jan 2012 |
Last Update: Never |
Downloads: 0 |
Not Supported
Uses Plugins
Re-usable Code
|
Hi,
Sometimes we get some members who misuse the signature facility and violate forum rules. While vBulletin allows you to edit their signatures, it doesn't allow you to disable them. The following plugins will disable signatures per user.
I don't have proper knowledge to make a full product out of these plugins. Anyone is welcome to convert these plugins into a full vBulletin product.
The members signature occurs on two places in the site. The Forum threads and on their profile pages.
To Disable Signatures in Forum Threads :
Go to Admin Control Canel > Plugins and Products > Add New Plugin and put down the following.
Product : vbulletin
Hook Location : postbit_display_complete
Title : Thread signature remover
Plugin PHP Code :
PHP Code:
if (in_array($post['userid'], array(1,2))) { $post['signature'] = false; }
Plugin is Active : yes
Instead of 1,2 in the plugin add the userid's of the members whose signature you want to disable.
------------------------------------------------------------------
To Disable Signatures in Members Profile :
Go to Admin Control Canel > Plugins and Products > Add New Plugin and put down the following.
Product : vbulletin
Hook Location : member_profileblock_fetch_unwrapped
Title : Profile page signature remover
Plugin PHP Code :
PHP Code:
if (in_array($prepared['userid'], array(1,2))) { $prepared['signature'] = false; }
Plugin is Active : yes
Instead of 1,2 in the plugin add the userid's of the members whose signature you want to disable.
----------------------------------------------------------------
Hope that helps keep your forum clean.
Download
No files for download.
|