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

Reply
 
Thread Tools Display Modes
  #1  
Old 12-19-2010, 12:56 AM
huskermax huskermax is offline
 
Join Date: Mar 2010
Location: Cincinnati
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default add Quick Navigation to top of forum?

I recently added the lower breadcrumbs mod to my board and it is very cool. Posters like it cause they don't have to scroll to the top or use the "top" button.

Is there a way to add the quick Navigation menu to the top? I think this will help again in limiting the amount of scrolling a poster has to do. A lot of scrolling is a compliant I get.
Reply With Quote
  #2  
Old 12-19-2010, 01:05 AM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The lower breadcrumbs by Lynne shows them near the bottom... you already have a default "Upper breadcrumbs" near the top of the forum just below the navbar... did you mean something else by "Quick Navigation" ?
Reply With Quote
  #3  
Old 12-19-2010, 11:54 PM
huskermax huskermax is offline
 
Join Date: Mar 2010
Location: Cincinnati
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheLastSuperman View Post
The lower breadcrumbs by Lynne shows them near the bottom... you already have a default "Upper breadcrumbs" near the top of the forum just below the navbar... did you mean something else by "Quick Navigation" ?

Yea I have a quick naviagation menu that drops down that lists each board you have plus a few menu items. It is in the bottom left cornner of the board. I would like to move that to the top just above the fourm. See screen shot.
Attached Images
File Type: gif quicknav.GIF (62.1 KB, 0 views)
Reply With Quote
  #4  
Old 12-19-2010, 11:59 PM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

would you like it to show on all pages or just SHOWTHREAD and FORUMDISPLAY pages?
Reply With Quote
  #5  
Old 12-20-2010, 01:56 AM
huskermax huskermax is offline
 
Join Date: Mar 2010
Location: Cincinnati
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheWindows7Site View Post
would you like it to show on all pages or just SHOWTHREAD and FORUMDISPLAY pages?
Yes, the current one does that. I was wrong in my post above it is in the bottom right corner. So to move it up to the top right corner just above the forum/below the page numbers would be good.
Reply With Quote
  #6  
Old 12-20-2010, 02:38 AM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Open template forumjump

Find & Delete:
Code:
		<a href="{vb:raw relpath}#top" class="textcontrol" onclick="document.location.hash='top';return false;">{vb:rawphrase top}</a>
Open template FORUMDISPLAY

Find:
Code:
	<div class="threadpagenav">
		{vb:raw pagenav}
		{vb:raw forumjump}
	</div>
Replace with:
Code:
	<div class="threadpagenav">
		{vb:raw pagenav}
	</div>
Find:
Code:
<vb:if condition="$announcebits">
<ol id="announcements" class="announcements">
	{vb:raw announcebits}
</ol>
</vb:if>
Add After:
Code:
		{vb:raw forumjump}
Open template SHOWTHREAD

Find:
Code:
	<div id="pagination_bottom" class="pagination_bottom">
	<vb:if condition="$show['pagenav']">
		{vb:raw pagenav}
	</vb:if>
		{vb:raw forumjump}
	</div>
Replace with:
Code:
	<div id="pagination_bottom" class="pagination_bottom">
	<vb:if condition="$show['pagenav']">
		{vb:raw pagenav}
	</vb:if>
	</div>
Find:
Code:
{vb:raw header}
{vb:raw navbar}
{vb:raw template_hook.showthread_above_posts}
{vb:raw poll}
Add after:
Code:
<style type="text/css">
.navpopupmenu {padding:10px 0!important;}
</style>
		{vb:raw forumjump}

Enjoy!
Reply With Quote
  #7  
Old 12-20-2010, 04:41 PM
huskermax huskermax is offline
 
Join Date: Mar 2010
Location: Cincinnati
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheWindows7Site View Post
Open template forumjump

Find & Delete:
Code:
		<a href="{vb:raw relpath}#top" class="textcontrol" onclick="document.location.hash='top';return false;">{vb:rawphrase top}</a>
Open template FORUMDISPLAY

Find:
Code:
	<div class="threadpagenav">
		{vb:raw pagenav}
		{vb:raw forumjump}
	</div>
Replace with:
Code:
	<div class="threadpagenav">
		{vb:raw pagenav}
	</div>
Find:
Code:
<vb:if condition="$announcebits">
<ol id="announcements" class="announcements">
	{vb:raw announcebits}
</ol>
</vb:if>
Add After:
Code:
		{vb:raw forumjump}
Open template SHOWTHREAD

Find:
Code:
	<div id="pagination_bottom" class="pagination_bottom">
	<vb:if condition="$show['pagenav']">
		{vb:raw pagenav}
	</vb:if>
		{vb:raw forumjump}
	</div>
Replace with:
Code:
	<div id="pagination_bottom" class="pagination_bottom">
	<vb:if condition="$show['pagenav']">
		{vb:raw pagenav}
	</vb:if>
	</div>
Find:
Code:
{vb:raw header}
{vb:raw navbar}
{vb:raw template_hook.showthread_above_posts}
{vb:raw poll}
Add after:
Code:
<style type="text/css">
.navpopupmenu {padding:10px 0!important;}
</style>
		{vb:raw forumjump}

Enjoy!
Very nice, Does this just move it to the top or does it add one to the top?
Reply With Quote
  #8  
Old 12-20-2010, 10:28 PM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Moves it to the top.
Reply With Quote
  #9  
Old 12-21-2010, 01:31 AM
huskermax huskermax is offline
 
Join Date: Mar 2010
Location: Cincinnati
Posts: 146
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by TheWindows7Site View Post
Moves it to the top.
OK. Can I do anything to keep one at the bottom and put one on the top?
Reply With Quote
  #10  
Old 12-21-2010, 01:33 AM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the way the javascript is coded if you have both, the bottom will function normally but the top has issues collapsing once expanded/opened. Im sure its probably an easy fix. If you have any knowledge with templates/editing you can read what I put for editing and edit it to keep both.
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 01:53 AM.


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.04373 seconds
  • Memory Usage 2,286KB
  • Queries Executed 12 (?)
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
  • (18)bbcode_code
  • (4)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
  • (1)postbit_attachment
  • (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_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
  • postbit_attachment
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete