Ok, I got it for you.
In memberlist.php, find:
PHP Code:
$users=$DB_site->query("SELECT *
FROM user,userfield
WHERE $condition AND
user.userid = userfield.userid
".iif($memberAllGood, " AND usergroupid NOT IN (1,3,4,8) ", "")."
ORDER BY $orderby $direction
LIMIT ".($limitlower-1).",$perpage");
and change it to:
PHP Code:
$users=$DB_site->query("SELECT *
FROM user,userfield
WHERE $condition AND
user.userid = userfield.userid
".iif($memberAllGood, " AND usergroupid NOT IN (1,3,4,8) ", "")."
AND user.userid != 1
ORDER BY $orderby $direction
LIMIT ".($limitlower-1).",$perpage");
This is the line where you add the userid to not show up. Just change the 1 to whatever you want.
AND user.userid != 1