MyBB Community Forums

Full Version: How to remove Buddy List functionality
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Am looking to completely remove the 'Buddy List' functionality.

I cant see anything obvious within my ACP so am guessing a few edits need to be done (or a plugin possibly available).

Anyone got any pointers for me?

Thanks in advance.
there is no setting to disable it but a series of template edits can hide it from display... i am saying it as "hide" because the functionality can still be accessed if they use the direct url http://your_forum.com/usercp.php?action=editlists



1. Remove the foll. code from header_welcomeblock_member template
<li><a href="#" onclick="MyBB.popupWindow('{$mybb->settings['bburl']}/misc.php?action=buddypopup', null, true); return false;">{$lang->welcome_open_buddy_list}</a></li>



2. Remove the foll. code from usercp_nav_misc template
<tr><td class="trow1 smalltext"><a href="usercp.php?action=editlists" class="usercp_nav_item usercp_nav_editlists">{$lang->ucp_nav_editlists}</a></td></tr>



3. Modify the foll. code from member_profile template as shown
<div style="text-align: center">{$buddy_options}{$ignore_options}{$report_options}</div>

<div style="text-align: center">{$report_options}</div>
Once again you are a star.
Much appreciated.