First thank you for answering my question! However in your help file you have an error:
Question:
How can I limit form access to users who have at least 10 posts?
Code:
if($vbulletin->userinfo['posts'] < 10)
{
$errormessage = "You need 200 posts to use this form.";
eval('print_output("' . fetch_template('STANDARD_ERROR') . '");');
}
Should be:
Code:
if($vbulletin->userinfo['posts'] < 10)
{
$errormessage = "You need 10 posts to use this form.";
eval('print_output("' . fetch_template('STANDARD_ERROR') . '");');
}
Not a big change, but might confuse some people.
Could you also help me in providing an example of a 'Custom Form Output'? I do not know where to even start there. Your help files states:
Quote:
Custom Form Output: (optional) You can create your own layout to the thread/ pm/ post/ email the form created. BB code and all macroses allowed. Leave blank to use default layout.
|
What do you mean by macros?
So could you provide a simple example of a custom form output please?
Thank you and for sure I nominated this mod!
Thanks Again!