MyBB Community Forums

Full Version: Slight Changes
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi I would just like to know how can I get rid of the following in the userCP ?
Additional Contact Information
ICQ Number:
AIM Screen Name:
MSN ID:
Yahoo ID:

I got rid of it on the profile etc but I would also like it gone from the userCP aswell, any ideas?

Also how do I rearrange modules in the profile, I would like the signature field to be stretched accross the bottom of a users profile.
To remove that stuff, delete this from the usercp_profile template:

<fieldset class="trow2">
<legend><strong>{$lang->additional_contact_details}</strong></legend>
<table cellspacing="0" cellpadding="{$theme['tablespace']}">
<tr>
<td><span class="smalltext">{$lang->icq_number}</span></td>
</tr>
<tr>
<td><input type="text" class="textbox" name="icq" size="25" value="{$user['icq']}" /></td>
</tr>
<tr>
<td><span class="smalltext">{$lang->aim_screenname}</span></td>
</tr>
<tr>
<td><input type="text" class="textbox" name="aim" size="25" value="{$user['aim']}" /></td>
</tr>
<tr>
<td><span class="smalltext">{$lang->msn}</span></td>
</tr>
<tr>
<td><input type="text" class="textbox" name="msn" size="25" value="{$user['msn']}" /></td>
</tr>
<tr>
<td><span class="smalltext">{$lang->yahoo_id}</span></td>
</tr>
<tr>
<td><input type="text" class="textbox" name="yahoo" size="25" value="{$user['yahoo']}" /></td>
</tr>
</table>
</fieldset>