PDA

View Full Version : Disable Avatar in Specific forums ?


K!nG
07-30-2013, 01:33 AM
Hello Everyone,

I have searched, but couldn't find anything. I am looking for a way or a mod which will allow to disable user avatar in one specific forum ??

I need to have it disabled it in one forum only. There are mods to disable signatures in specific forums, but would like to have it for avatars. I am using VB4.

Help is appreciated.

Thanks.

--------------- Added 1375152775 at 1375152775 ---------------

Never mind... Admins can delete it. I found it :)

Thanks.

nerbert
07-30-2013, 02:25 AM
Try this plugin code in "showthread_postbit_create" with your forumid in place of "2"


if($thread['forumid'] == 2)
{
$show['avatar'] = false;
}


My dev site isn't set up to test this so I don't know if it will work or not