I'd like a specfic forum (Testing, for example) not to show in the active topics list.
It looks like around line 282 of topics.asp you could add
strSql = strSql & " AND (F.FORUM_ID <> id_of_my_test_forum)"
and after line 862 in default.asp, you must extend the strSql by adding an additional clause:
" AND (" & strTablePrefix & "TOPICS.FORUM_ID <> id_of_my_test_forum)"
It's kind of a kludge, but it seems to work. Is there any problem with doing it this way that those of you who know the Snitz code a lot better than I do can see?
Thanks.