First check the ACP->General->Load settings->Show user activity option, set it to yes. If it is set like that, it's quite weird actually...hope nothing escaped me.
The display of those two lines depends on one variable - S_SHOW_ACTIVITY, but that is set to true, if that option I mentioned is set to yes, so I don't see how it is possible that it's evaluated otherwise.
Try opening styles/subsilver2/template/memberlist_view.html and find this piece of code:
Code: Select all
<!-- IF S_SHOW_ACTIVITY -->
<tr>
<td class="gen" align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap">{L_ACTIVE_IN_FORUM}: </td>
<td><!-- IF ACTIVE_FORUM --><b><a class="gen" href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></b><br /><span class="genmed">[ {ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>
</tr>
<tr>
<td class="gen" align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap">{L_ACTIVE_IN_TOPIC}: </td>
<td><!-- IF ACTIVE_TOPIC --><b><a class="gen" href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></b><br /><span class="genmed">[ {ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>
</tr>
<!-- ENDIF -->
Delete this from it:
Code: Select all
<!-- IF S_SHOW_ACTIVITY --> and <!-- ENDIF -->(the one at the end)
Then try to clear the board cache and see what it does.