PDA

View Full Version : minimum character posts per forum ( not per board)


fevredsuk
05-29-2011, 08:55 PM
Hi, any know if there is a mod to limit specific forums to minimum chartacter posts rather than the current global.

e.g. I would like to have a forum which is for more indepth discusions, therefore make all posts/threads within this specific forum minimum 100 characters.

Is this possible

Thanks

Zachery
05-29-2011, 09:09 PM
You can add a plugin to detect a specific forum and change the setting to a higher character limit.

So something like

if($GLOBALS[forumid] == X)
{
$vbulletin->options[postminchars] = X;
}

Might need to play with hook location.

fevredsuk
05-30-2011, 05:33 AM
Thanks for that, works perfect.

created 2 identical plugins with different hook locations

newthread_start
newreply_start