There are no style changes, the XML file is for the overall modifications done to your board's files.oogotbagsoo wrote:does this work for subsilver2 as well? i dont see an xml file for subsilver2 only for prosilver
hojko wrote:Dont works at 3.0.6, bots are visibles (tested on admin/founder and normal user account).
Works for me. I literally just installed it on 3.0.6 using AutoMOD. Make sure you did all file edits and purged your cache.hojko wrote:Dont works at 3.0.6, bots are visibles (tested on admin/founder and normal user account).
I believe you are using the Activity Stats MOD by Highway of Life? If so, just click the link I just showed you and do a find for "How can I get the list to exclude the bots (spiders)?" The fix is right there.NicksNet wrote:hello,
nice mod, works perfectly
but... how can i hide the bots in the view of last 24 hours?
thanks
Admins can still see bots as they are treated like hidden users.Neuropass wrote:same here i can still see bots on php3.06. admin founder account. is that normal?
Here is your answer.atomicz wrote:Is this mod package working well too on phpbb 3.06?
Here you go.Stitch625 wrote:I want to hide all bots on the index page from all Moderators and admins as well.
I have question about that modification. Bots can view forum, they are only hide in viewonline etc?MartectX wrote:OPEN viewonline.phpSnorlaxative wrote:How can I hide them from the users with permission to see them as well.. I just don't like seeing bots at all
FIND
ADD BEFORECode: Select all
if ($row['user_id'] != ANONYMOUS && !isset($prev_id[$row['user_id']]))
FINDCode: Select all
if ($row['user_type'] == USER_NORMAL || $row['user_type'] == USER_FOUNDER || $row['user_id'] == ANONYMOUS) {
ADD BEFORECode: Select all
$db->sql_freeresult($result); unset($prev_id, $prev_ip);
OPEN includes/functions.phpCode: Select all
}
FIND
REPLACE WITHCode: Select all
$online_users['online_users'][$row['session_user_id']] = (int) $row['session_user_id']; if ($row['session_viewonline']) { $online_users['visible_online']++; } else { $online_users['hidden_users'][$row['session_user_id']] = (int) $row['session_user_id']; $online_users['hidden_online']++; }
Code: Select all
if ($row['user_type'] == USER_NORMAL || $row['user_type'] == USER_FOUNDER || $row['user_id'] == ANONYMOUS) { $online_users['online_users'][$row['session_user_id']] = (int) $row['session_user_id']; if ($row['session_viewonline']) { $online_users['visible_online']++; } else { $online_users['hidden_users'][$row['session_user_id']] = (int) $row['session_user_id']; $online_users['hidden_online']++; } }