Quote:
Originally Posted by x3n0
To add the 'Chat' location to "Who's Online?"
In the /includes folder open functions_online.php using your favorite PHP editor and;
FIND:
Code:
case 'subscriptions':
$userinfo['action'] = $vbphrase['viewing_paid_subscriptions'];
BENEATH it ADD:
Code:
case 'chat':
$userinfo['action'] = $vbphrase['chat'];
FIND:
Code:
case 'archive':
$userinfo['activity'] = 'archive';
break;
BENEATH it ADD:
Code:
case 'member.php':
$userinfo['activity'] = 'chat';
break;
|
I did all of these, and I still can't get the who's online working. Anybody succeeded this?