Quote:
Originally Posted by atomhead
One suggestion, either add the option to or make it default to add the name of the applicant in the title of the thread created. Just so people who see the voting block in vBadvanced CMPS can see who they are voting on.
|
You can edit this directly by going to the plugin code (Form One) and changing
Code:
////////////////////////////////////////////////////////////////////////////////////////////////////
//TITLE OF FORM (do not use quotation marks or you will get a parse error, besides the quotes around the whole title)
////////////////////////////////////////////////////////////////////////////////////////////////////
$formtitle = $vbulletin->options['wow_form_tit'];
to
Code:
////////////////////////////////////////////////////////////////////////////////////////////////////
//TITLE OF FORM (do not use quotation marks or you will get a parse error, besides the quotes around the whole title)
////////////////////////////////////////////////////////////////////////////////////////////////////
$formtitle = "Application Form - $answer1";
Replace "Application Form" with whatever, or just leave $answer1 if you just want the Character Name as the title without the rest. I'm trying to avoid an extra array doing it this way.