MyBB Community Forums

Full Version: Please help me to remove Administrator status
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
please help me to remove/hide Administrator status as marked in below image.
[Image: RePEQ.png]

By removing this other members can't find administrator activity.

no reply????
not solved, please help me
Do you want to remove it from profile only ? if yes then install this plugin:
http://community.mybb.com/thread-31860.html

Then go to: AdminCP > Templates > Your theme's templates > Member Templates > member_profile > and find the following;
<strong>{$lang->postbit_status}</strong> {$online_status}
and Change it into;
<if $memprofile['usergroup'] != "4" then><strong>{$lang->postbit_status}</strong> {$online_status}</if>

Change 4 to whatever your usergroup is.
I want it to hide from other members.

edit: I want it to hide from everywhere.
By from everywhere, do you want to hide it from online.php as well ??
I want to give admin activity as fake location in online.php
You would need a plugin for this, and I don't think its available right now.
Hello I applied this method on the profile and it works.
But on the "Who's online" page there is another status.
I did this to hide it and it doesn't work.

In online_row template i had this:
<tr>
<td class="trow1">{$online_name}{$user_ip}</td>
<td align="center" class="trow2">{$online_time}</td>
<td class="trow1" width="50%">{$location}</td>
</tr>

I replaced to:
<tr>
<td class="trow1">{$online_name}{$user_ip}</td>
<td align="center" class="trow2">{$online_time}</td>
<td class="trow1" width="50%"><if $memprofile['usergroup'] != "4" then>{$location}</if></td>
</tr>

But it still show the information. How to hide it correctly? Smile
<td class="trow1" width="50%"><if $mybb->user['usergroup'] != "4" then>{$location}</if></td>
It doesn't work Confused
It not show the location of every member....
Pages: 1 2