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

Reply
 
Thread Tools Display Modes
  #1  
Old 06-13-2015, 02:42 PM
mattltm's Avatar
mattltm mattltm is offline
 
Join Date: Apr 2009
Location: London/Kent
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Highlighting tabs when specific forums are displayed

I have 2 menu buttons for the forums on my site, one which takes you to the Award forums and one which takes you the the Main forums.

I have used ?tabid=xx to highlight the correct "Award forums" menu button when the award forums are displayed but when someone clicks into a sub forum, the "Main forums" menu button is highlighted.

Is there a way that I can append ?tabid=xx to specific forums so that the correct menu button is highlighted when the forum is displayed? I know it will display as I want it because I can manually add ?tabid=xx to the forum link and get the correct result.

I guess I need some code that says "if this forum is a subforum of froumid 8 then append ?tabid=xx to the url"?

Thanks.
Reply With Quote
  #2  
Old 06-16-2015, 04:22 PM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are you still looking for this? I think this works: create a plugin using hook set_navigaton_tab_main and this code:
Code:
global $forumid, $vbulletin;

$awards_forumid = X;
if (!empty($forumid) && $forumid != -1 && is_array($vbulletin->forumcache[$awards_forumid]))
{
   if (in_array($forumid, explode(',',$vbulletin->forumcache[$awards_forumid]['childlist'])))
   {
      $root = 'tab_id';
   }
}
You need to replace the X with the forumid of your awards forum, and the 'tab_id' with your tab id, which you can see as 'Identity' when you're editing the tab in the navigation manager (when I tested the code, my tab id was tab_ndq3_856, so it will be something like that).
Reply With Quote
Благодарность от:
mattltm
  #3  
Old 06-16-2015, 04:48 PM
mattltm's Avatar
mattltm mattltm is offline
 
Join Date: Apr 2009
Location: London/Kent
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Perfect. You are "The Man"!

I was scratching my head for ages with that!
Reply With Quote
  #4  
Old 06-16-2015, 04:52 PM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh, also you can set "Append 'tabid' to URL" to No since you don't need it with that plugin.
Reply With Quote
  #5  
Old 06-16-2015, 04:55 PM
mattltm's Avatar
mattltm mattltm is offline
 
Join Date: Apr 2009
Location: London/Kent
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Next stupid question...

Can I do the same sort of thing for the calendar tab?

In the default view, the correct tab is highlighted because I've added "?tabid=61" to the end of the navigation link but if you click week or day view (for example) it highlights the "forum" tab.

I'm not smart enough to work out how to morph your code to work for it!
Reply With Quote
  #6  
Old 06-16-2015, 05:19 PM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I noticed a problem with the plugin. For the forum home page the forumid is -1 and it was selecting the Awards tab. I changed the code above to add a check for forumid != 1, so you probably want to copy the code again (sorry about that).

For the calendar, try setting Tab Script(s) to "calendar" (without the quotes) for that tab.
Reply With Quote
Благодарность от:
MarkFL
  #7  
Old 06-17-2015, 03:12 PM
mattltm's Avatar
mattltm mattltm is offline
 
Join Date: Apr 2009
Location: London/Kent
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sweet!

Thanks a bunch
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 11:44 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.07268 seconds
  • Memory Usage 2,222KB
  • 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
  • (1)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (7)post_thanks_box
  • (2)post_thanks_box_bit
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (7)post_thanks_postbit_info
  • (7)postbit
  • (7)postbit_onlinestatus
  • (7)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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • 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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete