XF 2.0 Show online status 'on' by default

By default when you install your board, all users who register will have their online status shown by default. This is controlled by the Default Registration Values in Options -> User registration. Make sure Show online status is ticked.

If some people have hidden their online status through Preferences and you need to enable it for all users again, you can run these 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;
 
Top Bottom