Author |
Topic |
|
Darth
New Member
66 Posts |
Posted - 28 October 2006 : 14:37:00
|
Hi, I would like to hide the member count so that it does not show up at the top of the forum home page. If someone knows how to do this please let me know. Thanks. |
|
Soar
Junior Member
USA
197 Posts |
Posted - 28 October 2006 : 22:05:30
|
I'm assuming your forum is modded to add that - it isn't a standard feature. You might want to:
1. Post the url to the forum; and, 2. A text version of your inc_header.asp file (without having seen the forum, and based on your statement that it's "up at the top", most likely the alteration was to that file - perhaps adding the Active Users mod to it). |
|
|
AnonJr
Moderator
United States
5768 Posts |
Posted - 28 October 2006 : 22:10:57
|
Actually, in the statistics at the bottom of default.asp it shows how many members you have...
There are two blocks of code that display (among other items) how many members there are.
If you look for if strShowStatistics <> "1" then you should be fairly close to what you are looking for. |
Edited by - AnonJr on 28 October 2006 22:11:48 |
|
|
Darth
New Member
66 Posts |
Posted - 29 October 2006 : 18:57:50
|
OK, here is a link to my forum so that you can take a look at the member counter:
Empirical Taoism
I guess the member count used to be at the bottom of the page but I turned of all the details in the admin section and it started showing near the top. It lists number of topics and posts too.
I have not made any mods to the software. My server provider, who moderates here, has made several security fixes and updates though.
I have never in my life made any changes to code, and I'm 57 now, if you catch my drift. I'm willing to try it though, but I'll need some help =) |
Edited by - Darth on 29 October 2006 19:00:29 |
|
|
Soar
Junior Member
USA
197 Posts |
Posted - 29 October 2006 : 21:34:08
|
Well, wadda know! Never had turned off the detailed statistics - didn't realize it would post the abrreviated version at the top of the table on default.asp. Learn something new every day.
Anyway, if you want to get rid of it, remove or comment out the following code, at around line 276 in default.asp:
if strShowStatistics <> "1" then Response.Write vbNewLine & _ " <table width=""100%"" border=""0"">" & vbNewline & _ " <tr>" & vbNewline & _ " <td>" if ShowLasthere then Response.Write "<font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """>You Last Visited - " & ChkDate(Session(strCookieURL & "last_here_date"), " " ,true) & "</font>" else Response.Write " " end if Response.Write "</td>" & vbNewline & _ " <td align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """>There are " & Posts & " Posts in " & Topics & " Topics and " & Users & " Users </font></td>" & vbNewline & _ " </tr>" & vbNewline & _ " </table>" & vbNewline & _ " </td>" & vbNewline else Response.Write "</td>" & vbNewline end if |
Edited by - Soar on 29 October 2006 21:49:53 |
|
|
Darth
New Member
66 Posts |
Posted - 30 October 2006 : 01:31:45
|
Thank you all very much for your help, it has been taken care of. |
|
|
|
Topic |
|