Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: General / Classic ASP versions(v3.4.XX)
 New Topic
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

kolucoms6
Average Member

845 Posts

Posted - 27 December 2007 :  07:45:11  Show Profile
My users generaly complain that when they visit my forum, they find it VERY difficult in understanding how to submit a new topic.

How to change the image to text as NEW POST in default.asp?

Edited by - kolucoms6 on 27 December 2007 07:46:16

AnonJr
Moderator

United States
5768 Posts

Posted - 27 December 2007 :  09:23:03  Show Profile  Visit AnonJr's Homepage
They don't see the "New Topic" text at the top-center of the page when they click on a forum?
Go to Top of Page

kolucoms6
Average Member

845 Posts

Posted - 27 December 2007 :  10:50:30  Show Profile

Not in default.asp , yes in forum.asp
Go to Top of Page

phy1729
Average Member

USA
589 Posts

Posted - 27 December 2007 :  14:13:39  Show Profile
In default.asp line 753 if you change

Response.Write " "

to

if (ForumFType = 0) and (mlev > 0) then
Response.Write " <a href=""post.asp?method=Topic&FORUM_ID=" & ForumID & """>" & getCurrentIcon(strIconFolderNewTopic,"New Topic","hspace=""0""") & "</a>"
end if

Forums that are not links will have an icon for a new topic. You can mod that to have the text also.

Edited by - phy1729 on 27 December 2007 14:21:26
Go to Top of Page

kolucoms6
Average Member

845 Posts

Posted - 29 December 2007 :  13:12:40  Show Profile

Can you tell me 5 lines above and below

Response.Write " "

so that I can locate it
Go to Top of Page

phy1729
Average Member

USA
589 Posts

Posted - 29 December 2007 :  19:32:28  Show Profile
Apparently Snitz does not escape & so that should have been "&nbsp;" not " " but anyway the lines are.

elseif strBoardSubs <> "Y" and not(InArray(strCatSubs,ForumCatID)) then
Response.Write "&nbsp;" & ShowSubLink ("S", ForumCatID, ForumID, 0, "N")
end if
end if
else
Response.Write "&nbsp;"
end if
end sub

sub ForumMemberOptions()
if (mlev > 0) then
if ForumFType = 0 and ForumStatus > 0 and CatStatus > 0 then

Edit:Forgot to escape one.

Edited by - phy1729 on 29 December 2007 22:02:32
Go to Top of Page

kolucoms6
Average Member

845 Posts

Posted - 30 December 2007 :  00:26:38  Show Profile

Changed it but I dont see any difference
Go to Top of Page

phy1729
Average Member

USA
589 Posts

Posted - 30 December 2007 :  15:44:35  Show Profile
That would be because I thought that the Admin check was in the func not right before the func. I swore it worked when I tested it but the mod is line 763 from

Response.Write "<a href=""post.asp?method=Topic&FORUM_ID=" & ForumID & """>" & getCurrentIcon(strIconFolderNewTopic,"New Topic","hspace=""0""") & "</a>"

to

sub ForumMemberOptions()
if (mlev > 0) then
if ForumFType = 0 and ForumStatus > 0 and CatStatus > 0 then
Response.Write "<font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """ color=""" & strForumFontColor & """><span class=""spnMessageText""><a href=""post.asp?method=Topic&FORUM_ID=" & ForumID & """>New Topic" & getCurrentIcon(strIconFolderNewTopic,"New Topic","hspace=""0""") & "</a></span></font>"
else
Response.Write " "
end if
else
Response.Write " "
end if

My apologies about my mistake.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.88 seconds. Powered By: Snitz Forums 2000 Version 3.4.07