By the way, you can do a Trick by editing a maincore.php function which will Show the Administrators as a Member to the other Members of your Website and to the Guest/Visitors. But, to the there Admins, it will show him as Admin.
Quote
Remember : This Applies to all Members with Administrators Rank.
However, for doing these kinda things and for the Helping Hands, you have to Trust on the Trust in this Virtual world...
By the way, it is not a Big Deal for making him an Admin according to me...
Keep a Copy of your original maincore.php as Backup and Open your maincore.php :
Find for :
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]// Display the user's level
function getuserlevel($userlevel) {
global $locale;
if ($userlevel == 101) { return $locale['user1'];
} elseif ($userlevel == 102) { return $locale['user2'];
} elseif ($userlevel == 103) { return $locale['user3']; }
}[/syntaxhighlighter]
Change it to :
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]// Display the user's level
function getuserlevel($userlevel) {
global $locale, $userdata;
if ($userlevel == 101) { return $locale['user1'];
} elseif ($userlevel == 102) { if (($userdata['user_level'] == 101) || iGUEST) { return $locale['user1']; } else { return $locale['user2']; }
} elseif ($userlevel == 103) { return $locale['user3']; }
}[/syntaxhighlighter]
Done ! You will be able to see him as Member. Try by visiting his profile as a Guest...!