Quote:
Originally Posted by Stryker412
Thanks for that information. I tested my first form and very impressed with the results. One question, how can I change the font color of the large heading within the completed form?
|
Find in product file or plugin: Easy Forms Part 1
PHP Code:
$formoutput = "[CENTER][B][SIZE=5][COLOR=Black]" . $form[title] . "[/COLOR][/SIZE][/B][/CENTER]\r\n\r\n";
Quote:
Originally Posted by Stryker412
Does this form need the user to have permission to post within the section it's intended to go? For instance, I post my completed forms in an area where admins can discuss the applicant. However, with my current form app I have to give a regular user permission to post in the section but I did not give them permission to view the forum. It worked well until I found out that if a user has the option to subscribe to any thread they post in, they can view it.
|
No.
Quote:
Originally Posted by Stryker412
Lastly, what is the PHP code to have their forum username automatically entered for a question?
|
PHP Code:
$answer = '<input type="text" readonly="readonly" id="q_' . $formbit[id] . '" name="' . $formbit[id] . '" value="' . $vbulletin->userinfo[username] . '" />';