Quote:
Originally Posted by Redlinemotorsports
I can add that in there
Could you post a screenshot please? Not sure I quite understand
|
In staffapp.php, lines 311 and 313 are the same:
Code:
User's Name: " . $vbulletin->GPC['first_name'] . " " . $vbulletin->GPC['last_name'] . "
Line 313 should be:
Code:
Username: " . $vbulletin->GPC['username'] . "
I noticed that and fixed it today.
Also, is there any way to make this file force a prefix when it starts a thread? I know it would be a simple file edit, I am just not sure where.
I also added in a little code that allows me to show/hide position information on the application based on which positions are turned on. I did it in the template, but maybe this could be a feature in future versions.
After this code:
Code:
<!-- YOU MAY EDIT YOUR WELCOME MESSAGE HERE (START) -->
<p>Welcome $bbuserinfo[musername]!</p>
<p>$vboptions[usml_staffapp_welcome]</p>
I added:
Code:
<if condition="$vboptions['usml_postitionapplying_mod_onoff'] == '1'">
...and then some table code with position information and requirements. It will only show when that position is enabled.
Thank you for a great mod!!