Quote:
Originally Posted by Stryker412
This mod is a HUGE leap over Abe's old hack. How can I hide the forms list from registered users but still have the ability for admins to see it to edit?
|
You can set
Form Permissions by Editing Form
Quote:
What about users who have subscribe to threads on by default? Is there a way to block a form from being able to be subscribed?
|
Subscriptions dont currently work with the form so you wont have that problem.
Quote:
Lastly, is there a way to deny anyone from using the form if they don't have enough posts or have not been registered for x amount of days?
|
Form Hook: Form Start
PHP Code:
if ($vbulletin->userinfo['posts']<5)
{
print_no_permission();
}