Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 06-15-2004, 11:29 AM
calldaffer's Avatar
calldaffer calldaffer is offline
 
Join Date: Mar 2002
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Getting Moderators Attention

I am looking for something that I can activate as the admin so that whenever any member of a usergroup signs on they are well aware of something I want them to look at and respond to.

A type of alert system or a "High Priority New threads" feature that only staff can see and use? Can anyone do this?
Reply With Quote
  #2  
Old 06-15-2004, 12:00 PM
chrisvonc's Avatar
chrisvonc chrisvonc is offline
 
Join Date: Apr 2002
Location: Austin, TX
Posts: 161
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You may want to look at Erwins "Report Post goes to PM, Staff Forum as a new Thread and Email!" hack found at: https://vborg.vbsupport.ru/showthread.php?t=59709.

If I read your request right, this may be what you want. I use is for myself and my moderator to be instantly notified when we log on if there is a reported post, in my moderator section. This way the normal mambers never see the section let alone the reported posts.

Its been working very well for me, maybe it may be what you are looking for?
Reply With Quote
  #3  
Old 06-15-2004, 12:21 PM
calldaffer's Avatar
calldaffer calldaffer is offline
 
Join Date: Mar 2002
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by chrisvonc
You may want to look at Erwins "Report Post goes to PM, Staff Forum as a new Thread and Email!" hack found at: https://vborg.vbsupport.ru/showthread.php?t=59709.

If I read your request right, this may be what you want. I use is for myself and my moderator to be instantly notified when we log on if there is a reported post, in my moderator section. This way the normal mambers never see the section let alone the reported posts.

Its been working very well for me, maybe it may be what you are looking for?
not quite what I'm after. See, here is my problem. I'm having a problem getting my staff to keep up with important posts inside the staff area. I'll post something and expect them to reply and they'll overlook it because we have so many new posts on our board that my staff forum posts can get buried at times.

I've tried telling them that instead of using the new post feature to come to the staff section first, catch up on the moderator posts in there, then go and use the new posts feature to view the rest of the boards but it just isn't sinking in. This is a problem I've been battling ever since I started the place, no matter who I bring in on staff.

What I'd like, is a system that does one of two things. Either create a seperate new posts feature that only staff can see and label it "high priority posts"

Or, something I can checkmark when I'm making a new post that will somehow draw the mods attention to that thread in particular either via popup, or make the forum link flash....just something I know they couldn't overlook.
Reply With Quote
  #4  
Old 06-15-2004, 02:40 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have it so when there are new posts in the staff forums, the thread title is red. That way it stands out and they know there is something they need to read.
Reply With Quote
  #5  
Old 06-15-2004, 06:54 PM
calldaffer's Avatar
calldaffer calldaffer is offline
 
Join Date: Mar 2002
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Boofo
I have it so when there are new posts in the staff forums, the thread title is red. That way it stands out and they know there is something they need to read.
can you share how you did it?
Reply With Quote
  #6  
Old 06-15-2004, 07:06 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In the threadbit template

Find:

HTML Code:
$thread[threadtitle]
REPLACE it with:

HTML Code:
<if condition="$thread[forumid] == xx"><font color="red">$thread[threadtitle]</font>
<else />$thread[threadtitle]</if>
Replace xx with the forumid of the forum you want this to happen in.
Reply With Quote
  #7  
Old 06-15-2004, 07:30 PM
calldaffer's Avatar
calldaffer calldaffer is offline
 
Join Date: Mar 2002
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Boofo
In the threadbit template

Find:

HTML Code:
$thread[threadtitle]
REPLACE it with:

HTML Code:
<if condition="$thread[forumid] == xx"><font color="red">$thread[threadtitle]</font>
<else />$thread[threadtitle]</if>
Replace xx with the forumid of the forum you want this to happen in.
I find that in two places, replace them both?
Reply With Quote
  #8  
Old 06-15-2004, 08:02 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, here's the full code. Sorry I didn't do this the first time.
In the threadbit template

Find:

HTML Code:
   <a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]"><if condition="$show['gotonewpost']"><strong>$thread[threadtitle]</strong><else />$thread[threadtitle]</if></a>
REPLACE it with:

HTML Code:
   <a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]"><if condition="$show['gotonewpost']"><strong><if condition="$thread[forumid] == xx"><font color="red">$thread[threadtitle]</font>
<else />$thread[threadtitle]</if></strong><else />$thread[threadtitle]</if></a>
Remember to replace xx with the forumid of the forum you want to do this in.
Reply With Quote
  #9  
Old 06-15-2004, 08:30 PM
calldaffer's Avatar
calldaffer calldaffer is offline
 
Join Date: Mar 2002
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Boofo
Ok, here's the full code. Sorry I didn't do this the first time.
In the threadbit template

Find:

HTML Code:
   <a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]"><if condition="$show['gotonewpost']"><strong>$thread[threadtitle]</strong><else />$thread[threadtitle]</if></a>
REPLACE it with:

HTML Code:
   <a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]"><if condition="$show['gotonewpost']"><strong><if condition="$thread[forumid] == xx"><font color="red">$thread[threadtitle]</font>
<else />$thread[threadtitle]</if></strong><else />$thread[threadtitle]</if></a>
Remember to replace xx with the forumid of the forum you want to do this in.
to do multiple forums would I just seperate with a space and comma?
Reply With Quote
  #10  
Old 06-15-2004, 08:36 PM
calldaffer's Avatar
calldaffer calldaffer is offline
 
Join Date: Mar 2002
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by calldaffer
to do multiple forums would I just seperate with a space and comma?
tried it on one of my sub styles and nothing changed
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:17 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04448 seconds
  • Memory Usage 2,272KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (8)bbcode_html
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete