Separate User and Bots on Index
Posted: 30. October 2011 00:38
I would like to get 'Separate User and Bots on Index' Mod to work in the "Who is online" block for Portal version 1.0.6
Forum index "Who is online"

Portal "Who is online"

As you can see installing the MOD half worked because it separated 'Registered users' and 'Bots' in the "{TOTAL_USERS_ONLINE}"
OPEN: ./template/index_body.html
FIND:
REPLACE WITH:
OPEN: ./template/portal/block/whois_online.html
FIND:
REPLACE WITH:
Thanks in advance.
Forum index "Who is online"

Portal "Who is online"

As you can see installing the MOD half worked because it separated 'Registered users' and 'Bots' in the "{TOTAL_USERS_ONLINE}"
But doing the matching template edit did not workIn total there are 5 users online :: 2 registered, 0 hidden, 0 bots and 3 guests
OPEN: ./template/index_body.html
FIND:
Code: Select all
<td class="row1" width="100%"><span class="genmed">{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /><br />{LOGGED_IN_USER_LIST}</span></td>
Code: Select all
<td class="row1" width="100%"><span class="genmed">{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /><br />{LOGGED_IN_USER_LIST}<br />{ONLINE_BOTLIST}</span></td>
FIND:
Code: Select all
<td class="row1" width="100%"><span class="genmed">{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /><br />{LOGGED_IN_USER_LIST}</span></td>
Code: Select all
<td class="row1" width="100%"><span class="genmed">{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /><br />{LOGGED_IN_USER_LIST}<br />{ONLINE_BOTLIST}</span><br /><br /></td>
Thanks in advance.