Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Re: [sangiro] Flagging Moderators and Admins

Quote Reply
Re: [sangiro] Flagging Moderators and Admins In reply to
The posts are generated in the web page via loops... and I do not see where they are to edit them.

include_thread_display.html uses the loop "threads"

post_view_flat.html uses the loop "post_loop"

post_view_threaded.html uses two other pages:
1) include_thread_display.html for posts with threads
2) include_post_display.html for posts that are alone

include_post_display.html uses

post_view_printable.html uses loop "post_loop"

you can fix this partially in include_post_display by doing the following:

1) through the admin pannel - create two new global variables

moderator_font
value='s <font color="#FF0000"> (you can change the hex to whatever color you want - this is red)

/moderator_font
value='s </font>

2) in include_post_display.html add the BOLD



<a href="gforum.cgi?<%if user_status%>username=<%escape_url post_username%><%else%>user=<%user_id%><%endif%>;<%hidden_query%>">
<%if post_user_is_moderator%>
<%moderator_font%>
<%endif%>
<big><%nbsp post_username%></big>
</a>
<%else%>
<%if post_user_is_moderator%>
<%moderator_font%>
<%endif%>


<big><%nbsp post_username%></big>
<%endif%>
<%if post_user_is_moderator%>
<%/moderator_font%>
<%endif%>





*NOTE: This is not a total solution - it only affects moderators and not administrators. It only changes the color inside of a post. It does not change their name in a category view, who's onlne, or links to threaded messages.
Subject Author Views Date
Thread Flagging Moderators and Admins sangiro 3541 Jun 25, 2002, 4:10 PM
Thread Re: [sangiro] Flagging Moderators and Admins
shiner 3391 Jun 26, 2002, 8:07 AM
Thread Re: [shiner] Flagging Moderators and Admins
ellipsiiis 3410 Jun 26, 2002, 10:24 AM
Thread Re: [ellipsiiis] Flagging Moderators and Admins
Paul 3387 Jun 26, 2002, 10:25 AM
Thread Re: [Paul] Flagging Moderators and Admins
ellipsiiis 3421 Jun 26, 2002, 10:29 AM
Post Re: [ellipsiiis] Flagging Moderators and Admins
Paul 3380 Jun 26, 2002, 10:40 AM
Post Re: [ellipsiiis] Flagging Moderators and Admins
Paul 3367 Jun 26, 2002, 10:46 AM
Post Re: [Paul] Flagging Moderators and Admins
shiner 3359 Jun 26, 2002, 10:32 AM
Post Re: [shiner] Flagging Moderators and Admins
sangiro 3364 Jun 29, 2002, 9:08 AM