I have the Minimum Characters Per Post set at 15 for the entire forum. But I have one specific category where I'd like to disable it, or at least reduce it to 5. Is there any way to do it?
Create a plugin. Details below : AdminCP -> Plugins & Products -> Add New Plugin Product : vBulletin Hook Location : global_start Execution Order : 5 Title : Lesser Minimum Character Limit for Posts Plugin is Active : Yes Plugin PHP Code : if( $foruminfo['forumid'] == 3 ) { $vbulletin->options['postminchars'] = 5; } PHP: ------------------------------------------------------------------- Replace 3 with the FORUMID for which you want to alter the minimum character limit. And 5 is the limit you want to place. ------------------------------------------------------------------- If you want to have this alternate restriction on MULTIPLE forums/sub-forums, use this Plugin PHP Code : if( in_array( $foruminfo['forumid'], array(3, 2, 143, 45) ) ) { $vbulletin->options['postminchars'] = 5; } PHP: Where 3, 2, 143, 45 are comma-separated FORUMID values. -------------------------------------------------------------------
Thank you Shadab! That looks perfect. I am having hosting problems right now, but as soon as it's back up I will try that!