Quote:
Originally Posted by setishock
Mark, is there a way to make it so it doesn't show banned members? All but a few of the listed visitors are spammers that got banned. I'd prefer not to show those.
|
Yes, change the query near the top of the PHP content to read:
PHP Code:
$users_visited = $vbulletin->db->query_read("
SELECT user.*
FROM " . TABLE_PREFIX . "user AS user
WHERE lastvisit >= " . TIMENOW . " - " . 7 * 86400 . "
AND usergroupid != 8
ORDER BY lastvisit DESC
");