Quote:
Originally Posted by RK1gaming
So if I wanted to add Web Team or Graphics Team how about would I go about this and is this something in the future you will be adding to the mod
I like your layout of the application and the email and post it makes ... looks real formal and contains the information any admin would need to follow up on ...
Good Job
|
To change the positions on the application, you would
find (x2) in the template
staff_app
HTML Code:
<if condition="$vboptions['usml_postitionapplying_mod_onoff'] == '1'">
<input type="radio" name="position_applying" value="Moderator" />$vbphrase[usml_staffapp_mod]<br />
</if>
<if condition="$vboptions['usml_postitionapplying_smod_onoff'] == '1'">
<input type="radio" name="position_applying" value="Super Moderator" />$vbphrase[usml_staffapp_smod]<br />
</if>
<if condition="$vboptions['usml_postitionapplying_admin_onoff'] == '1'">
<input type="radio" name="position_applying" value="Administrator" />$vbphrase[usml_staffapp_admin]
</if>
and change the
value="" and also the
$vbphrase[]. Or, if you don't want to edit the phrase, you could just hardcode the positions into it.
And if you want to edit the vBulletin Options to reflect your changes, you COULD enable debug mode, and edit your settings or any changes you wish to make there, which would be much easier. To enable debug mode, enter this in the config.php file:
PHP Code:
$config['Misc']['debug'] = true;