To do the way people used to.
In the modcp/index.php find :
PHP Code:
if (can_moderate(0, 'canviewips'))
{
$canuser = true;
construct_nav_option($vbphrase['search_ip_addresses'], 'user.php?do=doips');
}
if ($canuser)
{
construct_nav_group($vbphrase['users']);
construct_nav_spacer();
}
Replace with this :
PHP Code:
if (can_moderate(0, 'canviewips'))
{
$canuser = true;
//construct_nav_option($vbphrase['search_ip_addresses'], 'user.php?do=doips');
}
if ($canuser)
{
//construct_nav_group($vbphrase['users']);
construct_nav_spacer();
}
Thats it ! Hope this help.