Do you want these features to be members-only so that guests and robots can't see them? We seem to get this requested a lot even though it's so easy to set it up yourself. Author: Robert Chapin (miqrogroove) License: GPL Hiding the Members List In header.php find if ($SETTINGS['memliststatus'] == 'on') { and replace it with if ($SETTINGS['memliststatus'] == 'on' And X_MEMBER) { In misc.php find if ($SETTINGS['memliststatus'] == 'off') { and replace it with if ($SETTINGS['memliststatus'] == 'off' Or X_GUEST) { Hiding the Member Profiles In member.php find if (strlen($member) < 3 || strlen($member) > 32) { and replace it with if (strlen($member) < 3 Or strlen($member) > 32 Or X_GUEST) { Note: This will break all of the profile links. There are too many links to worry about, so you should just add this to robots.txt: Disallow: /member.php?action=viewpro