Quote:
Originally Posted by TROLL
I have a quick question before I begin testing this mod.
I have a forum which is devoted to selling/buying on my site and we currently use formhack. What we need is to require a user to input name/price/location, ect. The problem that we currently have is that the hack we use lets anyone submit a thread.
I want to require users to have 25 posts to post or reply to a thread, but 0 posts to view. Is this currently possible with this mod?
Thanks!
|
A user can post form without forum permissions - so you could deny everyone posting access
Add to Form Hook: Form Start
PHP Code:
if($vbulletin->userinfo['posts'] < 25)
{
$errormessage = "You need at least 25 posts to post in this forum.";
eval('print_output("' . fetch_template('STANDARD_ERROR') . '");');
}