Bottom of the post page. - Posted (1443 Views)
Junior Member
thelodger
Posts: 296
296
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?
 Sort direction, for dates DESC means newest first  
 Page size 
Posted
Advanced Member
Etymon
Posts: 2396
2396
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
Posted
Forum Moderator
AnonJr
Posts: 5768
5768
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).
 
You Must enter a message