MyBB Community Forums

Full Version: Hide me from the Who's Online list
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I prevent my members to use this?
I looked everywhere in the admincp and no luck.

I'm sure one of you knows the answer. Thanks in advance!
Remove it from the template, and the run a query to force everyone to not be hidden. I'm not sure of the exact part of what template you'd need to alter, not the query you'd need to run, but I did a similar thing for vBulletin (albeit hiding a different option), so it's most likely possible this way.
(2010-01-22, 03:29 AM)Kiwi76 Wrote: [ -> ]Remove it from the template, and the run a query to force everyone to not be hidden. I'm not sure of the exact part of what template you'd need to alter, not the query you'd need to run, but I did a similar thing for vBulletin (albeit hiding a different option), so it's most likely possible this way.

Thanks. Template will be easy to modify, but I'm brain farting on the query. How do I do this again?
Run this in phpMyAdmin:

UPDATE `mybb_users` SET `invisible` = '0';