MyBB Community Forums

Full Version: hidden status
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to make only admin status hidden like this
[Image: f9c5d359de87b3c520f8fee8dfe99810.png]

thank in advance
Only allow admins to use the invisible feature. Look in your ACP usergroup settings.
sir i cant find any option to hide there.

(2015-02-16, 05:36 PM)Leefish Wrote: [ -> ]Only allow admins to use the invisible feature. Look in your ACP usergroup settings.

sir help me
php in templates (download and activate): http://mybbhacks.zingaburga.com/showthread.php?tid=260

ACP>Templates>your theme's templates>Member Templates>member_profile

Find
{$online_status}

Replace that code with
<if $memprofile ['uid'] == 1 then>Hidden<else>{$online_status}</if>

If you have another uid, then change 1 to yours.
(2015-02-16, 07:43 PM)PhantomD Wrote: [ -> ]php in templates (download and activate): http://mybbhacks.zingaburga.com/showthread.php?tid=260

ACP>Templates>your theme's templates>Member Templates>member_profile

Find

{$online_status}

Replace that code with

<if $memprofile ['uid'] == 1 then>Hidden<else>{$online_status}</if>

If you have another uid, then change 1 to yours.
let me try it thanks
(2015-02-16, 07:49 PM)jonastone Wrote: [ -> ]
(2015-02-16, 07:43 PM)PhantomD Wrote: [ -> ]php in templates (download and activate): http://mybbhacks.zingaburga.com/showthread.php?tid=260

ACP>Templates>your theme's templates>Member Templates>member_profile

Find

{$online_status}

Replace that code with

<if $memprofile ['uid'] == 1 then>Hidden<else>{$online_status}</if>

If you have another uid, then change 1 to yours.
let me try it thanks

If you find this complicated, you can just go to
UCP>Edit Settings and check the box "Hide me from the Who's Online list."

This will make you hidden from your users, but you can still see yourself that you're online.
thank sir it working
(2015-02-16, 07:53 PM)jonastone Wrote: [ -> ]thank sir it working

No problem. Make sure to mark this thread as solved.