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)
 Ranking for moderators
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

manish
Starting Member

India
11 Posts

Posted - 28 July 2003 :  11:23:12  Show Profile  Visit manish's Homepage  Send manish an ICQ Message
Hi all, i wonder if there is anyway of showing the actual ranking of a moderator besides his post instead of the rank "MODERATOR"

puzo
Junior Member

Israel
417 Posts

Posted - 28 July 2003 :  14:33:45  Show Profile  Visit puzo's Homepage
nope, you gotta edit the code for that, or, you can do what i did; edit the moderator's profile and make them a custom title.


Go to Top of Page

manish
Starting Member

India
11 Posts

Posted - 28 July 2003 :  18:50:18  Show Profile  Visit manish's Homepage  Send manish an ICQ Message
Ok! what changes in the code are required. Can you please tell the details ? Also if i donot want that the members to come to know who is the moderator for a particular forum, how to do that.
Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 28 July 2003 :  19:04:51  Show Profile
you can hide the moderators column on default.asp in the Admin Options (I think it's in the feature configuration). The column will then still be shown to moderators and admins, but hidden from guests and members.
Go to Top of Page

manish
Starting Member

India
11 Posts

Posted - 29 July 2003 :  17:15:52  Show Profile  Visit manish's Homepage  Send manish an ICQ Message
Okay, thanx a lot but is there anyway i can give the same ranking to moderators as i give to other members
Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 29 July 2003 :  17:30:47  Show Profile
I'm not very good with Select Case statements, but open inc_func_members.asp and go to line 72. Starting there you should find the following code:
			case "1"  
				if (fM_POSTS < cLng(intRankLevel1)) then Member_Level = Member_Level & strRankLevel0
				if (fM_POSTS >= cLng(intRankLevel1)) and (fM_POSTS < cLng(intRankLevel2)) then Member_Level = Member_Level & strRankLevel1
				if (fM_POSTS >= cLng(intRankLevel2)) and (fM_POSTS < cLng(intRankLevel3)) then Member_Level = Member_Level & strRankLevel2
				if (fM_POSTS >= cLng(intRankLevel3)) and (fM_POSTS < cLng(intRankLevel4)) then Member_Level = Member_Level & strRankLevel3
				if (fM_POSTS >= cLng(intRankLevel4)) and (fM_POSTS < cLng(intRankLevel5)) then Member_Level = Member_Level & strRankLevel4
				if (fM_POSTS >= cLng(intRankLevel5)) then Member_Level = Member_Level & strRankLevel5
			case "2"
				Member_Level = Member_Level & strRankMod

Change that so it looks like this (red part added, striked part should be removed):
			case "1", "2"  
				if (fM_POSTS < cLng(intRankLevel1)) then Member_Level = Member_Level & strRankLevel0
				if (fM_POSTS >= cLng(intRankLevel1)) and (fM_POSTS < cLng(intRankLevel2)) then Member_Level = Member_Level & strRankLevel1
				if (fM_POSTS >= cLng(intRankLevel2)) and (fM_POSTS < cLng(intRankLevel3)) then Member_Level = Member_Level & strRankLevel2
				if (fM_POSTS >= cLng(intRankLevel3)) and (fM_POSTS < cLng(intRankLevel4)) then Member_Level = Member_Level & strRankLevel3
				if (fM_POSTS >= cLng(intRankLevel4)) and (fM_POSTS < cLng(intRankLevel5)) then Member_Level = Member_Level & strRankLevel4
				if (fM_POSTS >= cLng(intRankLevel5)) then Member_Level = Member_Level & strRankLevel5
			case "2"
				Member_Level = Member_Level & strRankMod


That ought to do it, but make a backup of your file (inc_func_common.asp) before you make the changes, just in case
Go to Top of Page

manish
Starting Member

India
11 Posts

Posted - 29 July 2003 :  17:35:34  Show Profile  Visit manish's Homepage  Send manish an ICQ Message
I will try this code.
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.42 seconds. Powered By: Snitz Forums 2000 Version 3.4.07