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)
 Hiding Post Counts
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

TLW80
Starting Member

Australia
7 Posts

Posted - 30 October 2006 :  00:47:11  Show Profile
We have had an issue where users are posting one line nothing posts, simply for the fact of increasing their post count and status, but its becoming annoying to our other users

I have managed to set our post count so that it no longer counts the posts of our users, however it then has left the post counts to whatever it was upon disabling this function, and still displays them under their ussernames

I would like to know is it possible to remove the post count from being displayed under the username on their posts.

Can someone please help me out.... Cheers

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 30 October 2006 :  05:08:43  Show Profile  Send ruirib a Yahoo! Message
Yes, some changes are required to topic.asp, but it is possible.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

TLW80
Starting Member

Australia
7 Posts

Posted - 30 October 2006 :  22:57:54  Show Profile
Thanks, I have looked at the topic.asp code and havent had any success in finding the line of code that effects this count. Could you please provide me details of where in the code to change this.

Thanks in advance
Go to Top of Page

TonyB7
Junior Member

USA
267 Posts

Posted - 30 October 2006 :  23:19:13  Show Profile  Send TonyB7 an AOL message  Send TonyB7 a Yahoo! Message
Just edit their number of posts in their profile.

It hasn't been a problem on my forum, but if it was I'd initiate a rule and dump them back to 0 posts in a heartbeat.
Go to Top of Page

muzishun
Senior Member

United States
1079 Posts

Posted - 31 October 2006 :  01:40:18  Show Profile  Visit muzishun's Homepage
If you're wanting to remove the text that displays a user's number of posts on topic.asp, edit the following sections:

On 562-567 (in an unmodified topic.asp):
			if strCountry = "1" and trim(Reply_MemberCountry) <> "" then
				Response.Write	"                <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Reply_MemberCountry & "</small></font><br />" & vbNewLine
			end if
			Response.Write	"                <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Reply_MemberPosts & " Posts</small></font></p></td>" & vbNewLine & _
					"                <td bgcolor=""" & CColor & """ height=""100%"" width=""" & strTopicWidthRight & """"
			if lcase(strTopicNoWrapRight) = "1" then Response.Write(" nowrap")

Remove the red part so it looks like this:
			if strCountry = "1" and trim(Reply_MemberCountry) <> "" then
				Response.Write	"                <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Reply_MemberCountry & "</small></font><br />" & vbNewLine
			end if
			Response.Write	"                </p></td>" & vbNewLine & _
					"                <td bgcolor=""" & CColor & """ height=""100%"" width=""" & strTopicWidthRight & """"
			if lcase(strTopicNoWrapRight) = "1" then Response.Write(" nowrap")

Then at lines 767-771:
	if strCountry = "1" and trim(Member_Country) <> "" then
		Response.Write	"                <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Member_Country & "</small></font><br />" & vbNewLine
	end if
	Response.Write	"                <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Member_Posts & " Posts</small></font></p></td>" & vbNewLine & _
			"                <td bgcolor=""" & strForumFirstCellColor & """ width=""" & strTopicWidthRight & """"

Remove the red so it looks like this:
	if strCountry = "1" and trim(Member_Country) <> "" then
		Response.Write	"                <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Member_Country & "</small></font><br />" & vbNewLine
	end if
	Response.Write	"                </p></td>" & vbNewLine & _
			"                <td bgcolor=""" & strForumFirstCellColor & """ width=""" & strTopicWidthRight & """"

Bill Parrott
Senior Web Programmer, University of Kansas
Co-Owner and Code Monkey, Eternal Second Designs (www.eternalsecond.com)
Personal Website (www.chimericdream.com)

Edited by - muzishun on 31 October 2006 01:40:51
Go to Top of Page

Darth
New Member

66 Posts

Posted - 01 November 2006 :  03:18:48  Show Profile
Hey cool! I figured out how to make the first code change in my life.
I see this mod removed the post counts from the posts themselves but the post counts are still in the member list.

Is there any code for removing the post counts off of the member list too,
is there somewhere else where the admin or moderators can then check the post counts?

Edited by - Darth on 01 November 2006 04:08:06
Go to Top of Page

muzishun
Senior Member

United States
1079 Posts

Posted - 01 November 2006 :  19:07:59  Show Profile  Visit muzishun's Homepage
You could set it so that post counts don't display on the member list or the member profile. If you want admins to be able to see post counts, you can add a check for mlev on the member profile page.

Bill Parrott
Senior Web Programmer, University of Kansas
Co-Owner and Code Monkey, Eternal Second Designs (www.eternalsecond.com)
Personal Website (www.chimericdream.com)
Go to Top of Page

TLW80
Starting Member

Australia
7 Posts

Posted - 01 November 2006 :  22:27:14  Show Profile
Cheers guys.... ill let you know how I go
Go to Top of Page

Darth
New Member

66 Posts

Posted - 02 November 2006 :  00:22:50  Show Profile
quote:
Originally posted by muzishun

You could set it so that post counts don't display on the member list or the member profile. If you want admins to be able to see post counts, you can add a check for mlev on the member profile page.



By set it do you mean you change settings in the admin control panels or do you mean changing the operating code?
I didn't see anywhere that could be done in the admin section.

If it is a code change I would need some specific instructions like the ones a few posts up.

Thanks,

Edited by - Darth on 02 November 2006 00:23:08
Go to Top of Page

TLW80
Starting Member

Australia
7 Posts

Posted - 02 November 2006 :  18:03:37  Show Profile
Guys, this worked perfectly thanks a million......
Go to Top of Page

TLW80
Starting Member

Australia
7 Posts

Posted - 02 November 2006 :  18:05:40  Show Profile
Darth,

If you dont want the post counts to be counted, ensure that you are logged on as an admin. Then in the forum list select the 'Edit Forum Properties' button on the right hand side. When they open up there is a drop down for 'Increase Poast Count' Set it to 'No'.

If you do this on all your forums, they dont ever increase their post count.

Cheers
Go to Top of Page

Darth
New Member

66 Posts

Posted - 02 November 2006 :  21:23:28  Show Profile
I could have sworn I saw that option somewhere earlier but now I can't find it.
When I log on as admin I have a link on the right hand side that says: Admin options.

When I click that I get a page which has the following categories:

Forum Feature Configuration:
Main Forum Configuration
Feature Configuration
Member Details Configuration
Ranking Configuration
Server Date/Time Configuration
Email Server Configuration
Font/Table Color Code Configuration
Bad Word Filter Configuration
UserName Filter Configuration
Category/Forum Order Configuration
Group Categories Configuration

Other Configuration Options and Features:
Members Pending (3)
Admin/Moderator List
Member Search
Moderator Setup
E-mail List
Server Information
Forum Variables Information
Update Forum Counts
Archive Forum Topics
Shut Down the Forum
MOD Setup (Alternative MOD Setup)
Check Installation (Run after each upgrade !)

I looked through these categories and didn't see the selection for 'increase post counts'

Any ideas?

Thanks.

Edited by - Darth on 02 November 2006 21:24:46
Go to Top of Page

muzishun
Senior Member

United States
1079 Posts

Posted - 02 November 2006 :  23:22:10  Show Profile  Visit muzishun's Homepage
What you'll be looking for is on the default page of the forum, not in Admin Options. On the front page of your forum (where the different categories and forums are displayed) and click the edit icon next to a forum. That's where you'll find the "Increase Post Counts" option.

This will effectively freeze the post counts of all your users.

Bill Parrott
Senior Web Programmer, University of Kansas
Co-Owner and Code Monkey, Eternal Second Designs (www.eternalsecond.com)
Personal Website (www.chimericdream.com)
Go to Top of Page

Darth
New Member

66 Posts

Posted - 02 November 2006 :  23:51:53  Show Profile
Thanks, I found where they are and switched them.
Go to Top of Page

TLW80
Starting Member

Australia
7 Posts

Posted - 02 November 2006 :  23:56:08  Show Profile
Darth,

Select 'All Forums'. Then in the forum list, beside one of the forum names on the right one of the buttons is for 'Edit Forum Properties', in there you will see the Increase Post Count flag
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.39 seconds. Powered By: Snitz Forums 2000 Version 3.4.07