Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 08-29-2008, 06:51 PM
Cygnus Cygnus is offline
 
Join Date: Nov 2001
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Highlighting Board Names When There is New Activity?

First, I did a search for this (here and .com) but couldn't find anything similar to what I want to do.

So... I have a new site with a lot of boards in the forum. Rather than list them all out in an expanded format, I have nested them and keep them hidden, so that they appear like this:



All of the words above are links with Northern Oregon taking you to a forum with all of those listed as subforums (Adventist, Benson, Cascade Gateway, etc.) and the names of the courses themselves being links to that particular board.

What I would like to do is make it so that when there are new posts in one of these boards since a last visit, that the title would be a different color. So, for example, I come back to the forum and someone has posted a new post in Trojan, it will look like this:



Here is a link to the board in case it is needed for reference:
http://www.nwdiscgolfnews.com/forum/index.php

Is there something already in place that would allow me to do this or does someone know of a quick hack to make this work?

Any help is greatly appreciated.

--------------- Added [DATE]1220062420[/DATE] at [TIME]1220062420[/TIME] ---------------

OK... so I found this function in functions_forumlist.php:

Code:
// returns 'on' or 'off' depending on last post info for a forum
function fetch_forum_lightbulb(&$forumid, &$lastpostinfo, &$foruminfo)
{

	global $bb_view_cache, $vbulletin;

	if (is_array($foruminfo) AND !empty($foruminfo['link']))
	{ // see if it is a redirect
		return 'link';
	}
	else
	{
		if ($vbulletin->userinfo['lastvisitdate'] == -1)
		{
			return 'new';
		}
		else
		{
			if ($vbulletin->options['threadmarking'] AND $vbulletin->userinfo['userid'])
			{
				$userlastvisit = (!empty($foruminfo['forumread']) ? $foruminfo['forumread'] : (TIMENOW - ($vbulletin->options['markinglimit'] * 86400)));
			}
			else
			{
				$forumview = intval(fetch_bbarray_cookie('forum_view', $foruminfo['forumid']));

				//use which one produces the highest value, most likely cookie
				$userlastvisit = ($forumview > $vbulletin->userinfo['lastvisit'] ? $forumview : $vbulletin->userinfo['lastvisit']);
			}

			if ($lastpostinfo['lastpost'] AND $userlastvisit < $lastpostinfo['lastpost'])
			{
				return 'new';
			}
			else
			{
				return 'old';
			}
		}
	}
}

And I have found this in the templates:

Code:
$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif
Someone must know how these two interact. Rather than grab a specific image, I want to add a specific style to a link. This can't be that hard but it is just beyond me at the moment.

Little help?
Reply With Quote
  #2  
Old 09-02-2008, 03:05 AM
Cygnus Cygnus is offline
 
Join Date: Nov 2001
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any way to bump this?
Reply With Quote
  #3  
Old 09-02-2008, 08:07 AM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try:
Code:
<if condition="$forum[statusicon] == 'new'">
    <b>BLABLABLA</b>
<else />
    BLABLABLA
</if>
BLABLABLA - being the code for the link. (You should be able to find it in the same template just below where you found the previous code). Note: The code I posted is untested but I think it should work.
Reply With Quote
  #4  
Old 09-02-2008, 03:30 PM
Cygnus Cygnus is offline
 
Join Date: Nov 2001
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nope. I made the top condition a link with bold red. The second, no style. I see both links - one red, one white.

This is on the front page and needs to check the status of a board nested two deep.

Really? I am the first one to think of this?
Reply With Quote
  #5  
Old 09-02-2008, 04:00 PM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You must have forgot to remove the old link or something. It is impossible to see both links with that condition.

Undo any changes you've made so far and try in the forumhome_subforumbit_post template:

(Replacing everything thats already there, assuming yours is the default one)
Code:
<if condition="$forum['statusicon'] == 'new'">
    <b><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a></b>
<else />
    <a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
</if>
Reply With Quote
  #6  
Old 09-02-2008, 05:34 PM
Cygnus Cygnus is offline
 
Join Date: Nov 2001
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK... I am not sure that that will work. Maybe it will... don't know.

The links to the subforums are actually in the description of the parent forum - added through the Forum Manager.

Am I missing something? Could I have done what I am trying to do without touching the forum description field?
Reply With Quote
  #7  
Old 09-02-2008, 05:41 PM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I was under the impression that it was a child forum... otherwise you can't really do it.

A link is just a static piece of text after all...
Reply With Quote
  #8  
Old 09-02-2008, 05:44 PM
Cygnus Cygnus is offline
 
Join Date: Nov 2001
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

They are links to a child forum.

So... for example, if you look above... Adventist is a child forum under Northern Oregon (as is Benson, Cascade Gateway, etc...). I don't want to list these children on their own line with the status icon image because it would cause a lot of scrollling. Instead, I want to list it as I drew it above with the link changing styles based on new activity.

Does that make any sense? Any way to do this? It still shouldn't be that hard...

--------------- Added [DATE]1220382327[/DATE] at [TIME]1220382327[/TIME] ---------------

Yeah... built in feature. Only took talking about it to figure it out.

Thanks.
Reply With Quote
  #9  
Old 09-02-2008, 06:42 PM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Use the code I suggested in the template I said. Then remove the Links in the forum description (keep a backup of the old description in a text file or something). Then use the inbuilt feature that displays subforums. It should look the same.
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:50 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.04946 seconds
  • Memory Usage 2,241KB
  • 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
  • (4)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (9)postbit_onlinestatus
  • (9)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_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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete