MyBB Community Forums

Full Version: delete extra contact information
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I don't need the extra contact information.
Is there an easy way to disable/delete the fields homepage, emailaddress, ICQ, AIM, Yahoo-ID, MSN?
Hello there

go to Admin CP >templates > Modify /Delete > Expand > User CP templates > usercp_profile

find and delete
<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" name="icq" size="25" value="$icq" /></td>
</tr>
<tr>
<td><span class="smalltext">$lang->aim_screenname</span></td>
</tr>
<tr>
<td><input type="text" name="aim" size="25" value="$user[aim]" /></td>
</tr>
<tr>
<td><span class="smalltext">$lang->msn</span></td>
</tr>
<tr>
<td><input type="text" 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" name="yahoo" size="25" value="$user[yahoo]" /></td>
</tr>
</table>
</fieldset>

then Admin CP >templates > Modify /Delete > Expand > members templates > member_profile

find and delete

<tr>
<td class="trow1"><strong>$lang->homepage</strong></td>
<td class="trow1">$website</td>
</tr>
$sendemail
<tr>
<td class="trow2"><strong>$lang->pm</strong></td>
<td class="trow2"><a href="private.php?action=send&amp;uid=$memprofile[uid]">$lang->send_pm</td>
</tr>
<tr>
<td class="trow2"><strong>$lang->icq_number</strong></td>
<td class="trow2"><a href="javascript:;" onclick="popupWin('misc.php?action=imcenter&imtype=icq&amp;uid=$uid', 'imcenter', 450, 300);">$memprofile[icq]</a></td>
</tr>
<tr>
<td class="trow1"><strong>$lang->aim_screenname</strong></td>
<td class="trow1"><a href="javascript:;" onclick="popupWin('misc.php?action=imcenter&imtype=aim&amp;uid=$uid', 'imcenter', 450, 300);">$memprofile[aim]</a></td>
</tr>
<tr>
<td class="trow2"><strong>$lang->yahoo_id</strong></td>
<td class="trow2"><a href="javascript:;" onclick="popupWin('misc.php?action=imcenter&imtype=yahoo&amp;uid=$uid', 'imcenter', 450, 300);">$memprofile[yahoo]</a></td>
</tr>
<tr>
<td class="trow1"><strong>$lang->msn</strong></td>
<td class="trow1"><a href="javascript:;" onclick="popupWin('misc.php?action=imcenter&imtype=msn&amp;uid=$uid', 'imcenter', 450, 300);">$memprofile[msn]</a></td>
</tr>
</table>
</td></tr>


many regards