Quote:
Originally Posted by pursuited
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:
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!
|
OK thanks updated help file.
Code:
{username}'s Form
{qn_3}: {q_3}
{qn_1}: {q_1}
{qn_2}: {q_2}