Log in

View Full Version : Is there a way to require a # of posts before you can make a thread?


Cool Dog
10-08-2010, 07:12 AM
Is there a way to require a # of posts before you can make a thread? Like you must have 5 posts before you can make a thread?

kh99
10-08-2010, 02:05 PM
I don't know if there's some standard option to do that, but assuming there isn't you could create a plugin using the newthread_start hook with code something like:


$min_posts = 10;
if ($vbulletin->userinfo['posts'] < $min_posts)
{
eval(standard_error("You must have ".$min_posts." posts before you can start a thread."));
}