I was looking at another Snitz user's site this morning and noted that he has integrated the Statistics (last time on, active topics, newest member, etc.) with the Active Users mod. I'd like to do that as well, because as it stands, I have "Statistics" and then below that a completely different table with "Board Statistics" which is completely redundant.
It seems like this section from default.asp is the key.
if strShowStatistics = "1" then
' for PMs
if strPMStatus = "1" then
%>
<!--#INCLUDE FILE="privatemess.asp"-->
<%
end if
WriteStatistics
'##### Recently Seen Members #####
Call DisplayRecentlySeen(10,"simple")
'#################################
end if
%>
<!--#include file="inc_activeusers.asp"-->
<%
Is there a spot inside the inc_activeusers.asp where I can move this "if" block?