Bottom of the post page.

Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/69115?pagenum=1
04 November 2025, 21:41

Topic


thelodger
Bottom of the post page.
10 January 2010, 15:17


When reading a thread that has a zillion responses, the links available at the bottom of the page are...
New Topic
Reply to Topic
Send Topic to a Friend
Printer Friendly
and a few other icons

The new topic and reply to topic, are used by our members, the rest are not.
We really could do with a shortcut back to 'active topics' instead of the other stuff

Is this doable?
If so can anyone help me with it?

 

Replies ...


Etymon
10 January 2010, 18:16


You can make a copy of the PostingOptions subroutine, calling it something like PostingOptions2 where you add and or comment out the code and then replace the call to the PostingOptions subroutine (as in the code below) with your new subroutine, or you can comment out the call to the PostingOptions subroutine and just write in the code you want to go there instead of a subroutine:

Code:

	Response.Write	"<table align=""center"" border=""0"" cellPadding=""0"" cellSpacing=""0"" width=""95%"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td>" & vbNewLine & _
" <table width=""100%"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td align=""center"" valign=""top"" width=""50%"">" & vbNewLine
' Call PostingOptions()
Call PostingOptions2()
Response.Write "</td>" & vbNewLine & _
" <td align=""right"" valign=""top"" width=""50%"" nowrap>" & vbNewLine
%>
<!--#INCLUDE FILE="inc_jump_to.asp" -->
<%
Response.Write " </td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </table>" & vbNewLine
AnonJr
11 January 2010, 08:05


Sure. I've been playing with that very idea on another project. In inc_footer.asp I made a call to sForumNavigation() where I wanted it to show. I've made some extensive changes to the header and footer so I'm not sure posting the code would help. The only issue I've run into is that on default.asp it shows I have two members pending when I have two members (actual members, not pending).
© 2000-2021 Snitz™ Communications