XF 2.0 Show your online status

Nirjonadda

Well-known member
Please let me know that how to enable Show your online status for who are disabled? Can be reset with SQL Query?
 
Yes, you can run the following queries:

First, enable Show your online status for all users:

SQL:
UPDATE xf_user
SET visible = 1;

Next, enable Show your current activity for all users:

SQL:
UPDATE xf_user
SET activity_visible = 1;
 
Is there a way to disable usergroup ability to hide their online status?

I want this option also. If people want to hide their status, they need to go to Reddit.

Is there some code change that I can make? I have had a couple of folks scam others and then hide when they are online. I did not think that hiding was an option, but apparently it is.
 
There was an addon from themehouse for XF 1.5x. But they did not upgrade this for XF 2.1x. You might talk to them why they do not offer that in a XF 2.1 version.
 
Top Bottom