I always liked the feature where it displayed the below text at the bottom of the forum posts for people who have not logged in or registered, its from the older 7.9 forum which seems to be missing in the new one.
If you wish to post a reply to this topic you must first login
If you are not already registered you must first register
If you like to create this in the new forum, this is how you do it:
Add the following code to the forum_posts.asp
<div align="center">
<%
Response.Write ("</p>")
If intGroupID = 2 Then Response.Write(vbCrLf & " <p class=""text"">" & strTxtPostAReplyRegister & " <a href=""login_user.asp?FID=" & intForumID & """ target=""_self"">" & strTxtLoginSm & "</a><br />" & strTxtNeedToRegister & " <a href=""registration_rules.asp?FID=" & intForumID & """ target=""_self"">" & strTxtSmRegister & "</a></p>")
%>
You should add the above code right after the following:
<td align="right" nowrap><!-- #include file="includes/page_link_inc.asp" --></td>
</tr>
</table><%
End If
Thats it
Edited by coolguy - 25 November 2006 at 12:38am