Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons

Reply
 
Thread Tools
ThreadNav: scrolling New Posts navigation bar for Showthread Details »»
ThreadNav: scrolling New Posts navigation bar for Showthread
Version: 2.1, by nerbert nerbert is offline
Developer Last Online: Aug 2017 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 4.x.x Rating:
Released: 11-06-2011 Last Update: 01-17-2015 Installs: 61
DB Changes Uses Plugins Template Edits
Re-useable Code Translations  
No support by the author.

ThreadNav(2.1) puts almost all the information in New Posts or Today's Posts in a compact scrolling navigation bar in the thread display page (showthread). The location in showthread depends on the user's thread viewing settings. Buttons on either end scroll the list of new posts right or left and additional information is available in a drop down box when you hover over the lower portion of the post cell. The list automatically refreshes using AJAX once a minute (default).

In Version 2.1 you can now place ThreadNav in any vBulletin page. A simple setting will put it in Forum Home (index) and it can be added to other pages with a simple template edit (See instuctions in ThreadNav settings in your AdminCP for edits).

Updated Version 2.1
I've updated this recently to make it fully compatible with updates to Thread & Forum Ignore System, if it is installed. I also got rid of the text jiggle in some browsers when you hover over a cell to display the drop box.

Features:

General:
  • Searches for New Posts or Today's Posts
  • List scrolls right or left with buttons at ends
  • Automatically refreshes once a minute (default setting)
  • Cell width adjusts automatically to fit available space
  • Hovering over lower portion of partially exposed cell
    snaps the cell into full view
  • Automatically integrates with Thread & Forum Ignore System
    if installed
In the cell for each thread:
  • Go to first unread post button (New Posts only)
  • Thread link goes to either first or last post depending
    on user settings for viewing threads
  • Name of last poster
  • Last post button
In the drop down box:
  • Date/time
  • Forum
  • Thread starter
  • Peplies
  • Views
  • Links for previewing first and last posts
User settings:
  • Turn ThreadNav off
  • Get New Posts
  • Get Today's Posts
Admin Control Panel:
  • On/off
  • Other pages to show ThreadNav
  • Set refresh interval
  • Maximum minutes ThreadNav will continue refreshing
  • Allow or disallow guests to see ThreadNav
  • Maximum number of posts to show
  • Minimum width of each post cell.
  • Excluded forums
Upgrading to version 2.0
  • Upload the new product xml file in Plugins & Products and overwrite the old file.
  • Be sure to revert all threadnav templates, including threadnav.css.
  • Some pages will require simple template edits. See the ThreadNav setting sin the Admin CP for more information.

Bugs Fixed:
  • Now compatible with vBSEO
  • All text in phrases
  • More tips on styling in threadnav.css
  • Resolved major incompatibilities with some styles
  • Miscellaneous aesthetic changes
  • Resolved misalignment of borders of cell and drop box in some styles
  • Improved closing of drop boxes when you mouse out
  • Fixed more incompatibility issues with some some styles
  • Fixed incompatibility issue with IE (GRRRRRRRRRR....)
  • Overhauled system for opening and closing drop boxes

Style is based on borders, font-color and background-colors of postbits. For styles with darker colors a note at the top of threadnav.css gives helpful styling tips. If you need to add space above or below ThreadNav see top of threadnav.css. Don't use line breaks.

Installation is simple: upload the XML file to Products and you're ready to go -- no external files or edits.

Version 2.0 was developed in vB4.2.2 but should work in any vB4 version.

Download Now

File Type: xml product-thread_nav.xml (39.5 KB, 44 views)

Screenshots

File Type: png tn2.png (30.9 KB, 0 views)
File Type: png tn3.png (32.1 KB, 0 views)
File Type: png tn4.png (17.3 KB, 0 views)
File Type: png tn5.png (73.4 KB, 0 views)
File Type: png tn1.png (29.3 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
4 благодарности(ей) от:
BCP Hung, Erica1977, Nacho Vidal, sticky

Comments
  #152  
Old 12-01-2011, 01:21 PM
Alan_SP's Avatar
Alan_SP Alan_SP is offline
 
Join Date: Nov 2009
Posts: 1,122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How server intensive is this mod? Does it do one search for all users who have access to it, or one search for each user every minute (or whatever we specify in ACP)?
Reply With Quote
  #153  
Old 12-03-2011, 12:14 AM
nerbert nerbert is offline
 
Join Date: May 2008
Posts: 784
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by penmai.com View Post
Let me know which template i have to edit. i am using vb4.1.5.
Sorry I didn't get back to this earlier. Thanksgiving vacation, business, blah blah blah.....

I think this should do it -- Modify the ThreadNav Search plugin as follows:

PHP Code:

if(($vbulletin->options['TN_onoff'] AND $show['member']  
AND 
$vbulletin->userinfo['tn_control'] != 0
OR (!
$show['member'] AND $vbulletin->options['TN_allow_guests'])) 

    
$threadbits search(); 
    if(
$numthreads 0
    {         
        
$templater vB_Template::create('threadnav'); 
            
$templater->register('threadbits'$threadbits); 
        
//$template_hook['showthread_above_posts'] .= $templater->render(); 
        
$templatevalues['threadnav'] = $templater->render(); 
        
vB_Template::preRegister('SHOWTHREAD'$templatevalues);
    }         

if(
$_REQUEST['do'] == search

    
$threadbits search(); 
    die(
$threadbits); 

Now place {vb:raw threadnav} wherever you wish in the navbar template. If the drop boxes don't show I'll have to find the appropriate division and edit in a z-index. See how it works.
Reply With Quote
  #154  
Old 12-03-2011, 12:16 AM
nerbert nerbert is offline
 
Join Date: May 2008
Posts: 784
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Alan_SP View Post
How server intensive is this mod? Does it do one search for all users who have access to it, or one search for each user every minute (or whatever we specify in ACP)?
I searches every minute for every member. You can set the refresh interval to a very large number and save server loading and bandwidth
Reply With Quote
  #155  
Old 12-05-2011, 07:26 PM
osix osix is offline
 
Join Date: Feb 2009
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i just install it on my new forum 4.1.8
after some setting it does not seem to appear .

any idea .
Reply With Quote
  #156  
Old 12-05-2011, 11:18 PM
nerbert nerbert is offline
 
Join Date: May 2008
Posts: 784
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Do you have any other product that puts anything at the top of the showthread page?
Reply With Quote
  #157  
Old 12-06-2011, 12:23 AM
nerbert nerbert is offline
 
Join Date: May 2008
Posts: 784
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you don't have any other products at the top of showthread I'll have you do a simple diagnostic. Paste the following in at the bottom of the Threadnav Search plugin:

PHP Code:
$diagnose 1;
if(
$vbulletin->userinfo['username'] == 'osix' AND $diagnose == 1)
{
        die(
$numthreads ' threads found');

Change "osix" to your forum username. Refresh showthread and you should get a white page with the number of threads found in the search. If you have just clicked "Mark Forums Read" you won't get any results until someone posts a new thread. You may want to go to your user settings and click on ThreadNav Control and switch to "Today's Posts". You can disable the code I just posted by editing $diagnose to a value of 0
Reply With Quote
  #158  
Old 12-19-2011, 03:48 AM
bada_bing's Avatar
bada_bing bada_bing is offline
 
Join Date: Feb 2004
Location: Michigan
Posts: 1,698
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I like this mod but I would like to see a feature that allows you to only include the forums you want to show up rather then exclude forums, I have way more forums I want to exlude then include and this becomes a pain to manage when you have sponsors that come and go and forums that get altered.
Reply With Quote
  #159  
Old 01-19-2012, 11:58 PM
thang28101993 thang28101993 is offline
 
Join Date: Feb 2010
Location: fdsaf
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

not work http://downloadphimhd.com, help me
Reply With Quote
  #160  
Old 01-20-2012, 01:17 PM
nerbert nerbert is offline
 
Join Date: May 2008
Posts: 784
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by thang28101993 View Post
not work http://downloadphimhd.com, help me
This hasn't been working for some other people either and I'm not sure why.

Try this:

Admin CP > Options > General Settings > Thread/Forum Read Marking Type.

If it's not set to "Database (automatic forum marking)", change it to that and put some number in the next option if there isn't one there already. See if that makes it work.
Reply With Quote
  #161  
Old 03-02-2012, 10:27 PM
osix osix is offline
 
Join Date: Feb 2009
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is this working for 4.1.10
Reply With Quote
Reply

Thread Tools

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 05:30 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07366 seconds
  • Memory Usage 2,361KB
  • Queries Executed 26 (?)
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
  • (2)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (4)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (6)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete