vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Nested Boards should be BOLD as links... (https://vborg.vbsupport.ru/showthread.php?t=189528)

Cygnus 08-30-2008 02:23 AM

Nested Boards should be BOLD as links...
 
Posted this in the wrong thread maybe? Hell, I'd even pay for this hack...

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:

https://vborg.vbsupport.ru/external/2008/08/1.gif

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:

https://vborg.vbsupport.ru/external/2008/08/2.gif

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?

Cygnus 09-02-2008 02:06 AM

And bumping this... come on... seems I have done half of the work already just finding the applicable code...


All times are GMT. The time now is 07:33 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.01407 seconds
  • Memory Usage 1,720KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete