Quote:
Originally Posted by Sage Knight
This same thing happened on a forum I administered. Just simply moderate blog entries. It should really help reduce the numbers of spam blogs.
|
Quote:
Originally Posted by kh99
You could try this: create a plugin using hook blog_post_start and code like this:
Code:
$min_posts = 2;
if ($vbulletin->userinfo['posts'] < $min_posts)
{
print_no_permission();
}
|
okay! thanks guys. I have set both blog entry's to be moderated and also set that plugin, hopefully this will work now!