I edited the meetstaff_usergroupbit template, to show additional info on the staff page. I omitted the original biography from it & added a new biography section with larger text area & moved it up below send email. Check it out,
http://teamamp.us/forum/staff.php
If you wish to do the same, create a new User Profile Field via admincp/User Profile Fields/Add New User Profile Field.
Select Multiple-Line Text Box
Title: Biography2 (Or what ever you want to name it)
Description: Enter what you wish here
Max length of allowed user input: 100
Field Length: 70
Text Area Height: 10
Display Order: Should be filled in allready
Field Required: No
Display Order: Should be filled in as well. REMEMBER this number, you will need it later.
Display Page: Edit Your Details
Click Save.
Now, You will need to create a new phrase via admincp/Languages & Phrases/Phrase Manager/Add New Phrase
Varname: field
x_title (Change
x To Field Number)
Text: Biography2
Click save.
Remember to save a copy of this template before you edit it. You may need to use it, in case you have an error
Now, Go to Styles & Templates/Search in templates,
search for meetstaff_usergroupbit
Find:
Code:
<li>
<img class="inlineimg" src="$stylevar[imgdir_button]/email.gif" alt=" <phrase 1="$user[username]"> $vbphrase[send_message_via_email_to_x]</phrase>" border="0" />
<a href="sendmessage.php?$session[sessionurl]do=mailmember&u=$user[userid]" rel="nofollow"><phrase 1="$user[username]">$vbphrase[send_message_via_email_to_x]</phrase></a>
</li>
</if>
Add below:
Code:
<if condition="$user['fieldx']">
<li><span class="shade">$vbphrase[fieldx_title]</span> $user[fieldx]</li>
</if>
</ul>
Remember to change the
x to field number.
Click Save