vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=155)
-   -   Forum Quick Jump menu (https://vborg.vbsupport.ru/showthread.php?t=104805)

tidy_boy 01-07-2006 10:00 PM

Forum Quick Jump menu
 
Hey guys this is my first hack I have made so be gentle.

What does it do?

This creates a drop down menu with a list of your forums so where ever you are on your site you can use the quick jump to go direct to the forum your want.

Template Edits: 2


/--------------\
|How to Install|
\--------------/

You need to go to your admincp > styles and templates > style manager > select your style > Edit templates > Header

Find:

Code:

<if condition="$show['popups']">               
                        <if condition="$show['searchbuttons']">
                                <if condition="$show['member']">
                                <td class="element_control_nav"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>


Above Add:

Code:

<!--- tidy_boys Forum Dropdown --->

<td id="forum_options" class="vbmenu_control">
    <a href="$vboptions[bburl]">Forum Quick Jump</a>
    <script type="text/javascript">
        vbmenu_register("forum_options");
    </script>
</td>

<!---End tidy_boys Forum Dropdown --->


Then go to admincp > styles and templates > style manager > select your style > Edit templates > navbar


Find:

Code:

<!-- NAVBAR POPUP MENUS -->

Add after:

Code:

<!--- tidy_boys Forum Dropdown --->

<div class="vbmenu_popup" id="forum_options_menu" style="display:none">
  <table cellpadding="3" cellspacing="1" border="0">
                <tr align="center">
                        <td class="thead" colspan="2" >Drop Down title</td>
                </tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]">Forum Index</a>
                        </td></tr>

<tr align="center">
                        <td class="thead" colspan="2" >Forum Title</td>
                </tr>
               
<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

<tr align="center">
                        <td class="thead" colspan="2" >Forum title</td>
                </tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>
                       
<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

<tr align="center">
                        <td class="thead" colspan="2" >Forum title</td>
                </tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

<tr>
                        <td class="vbmenu_option" title="Forum Name">
                                <a href="$vboptions[bburl]/forumdisplay.php?f=x">Forum Name</a>
                        </td></tr>

</table>
</div>


<!---End tidy_boys Forum Dropdown --->

Where you see the x you replace it with the forum id. You will need to play around with the code if you need more forums in the drop down its really easy.


Dont forget to click install


Enjoy...

Brent H 01-08-2006 06:54 PM

Good work :)

tidy_boy 01-08-2006 06:55 PM

Thankyou I am very new to making hacks hope people enjoy it

bashy 01-08-2006 07:01 PM

Hi

I dont need this but i will say well done, i really must read up on this coding lark as what you have done looks so simple (no offence meant) to do..

Well done m8 :)

Regards

Bashy

Red Blaze 01-08-2006 07:02 PM

Hey, looks alot better than the original jump menu. Too bad you gotta go back n' forth in the navbar template. ^^;

tidy_boy 01-08-2006 07:06 PM

I will be coding the new verison so when you add a forum in the admincp it adds it into the menu.

I have got a lot on at the mo so it will be done when i get chance :D


Thanks for the positive comments :D

Snake 01-08-2006 07:09 PM

Interesting!

/me installs

tidy_boy 01-08-2006 07:43 PM

Remember to click install :D

michaelbenson 01-08-2006 08:28 PM

I use something similar on my forums, but mine seperate the categories horizontally to save some space for users running a loser resolution, or more forums. Although this idea looks good too ;)

Reef 01-08-2006 09:48 PM

Quote:

Originally Posted by tidy_boy
I will be coding the new verison so when you add a forum in the admincp it adds it into the menu.

I'll keep a lookout for this version. Nice work so far

tidy_boy 01-09-2006 08:07 AM

I have now moved a few things around to make time to improve this :D

Zia 01-09-2006 12:12 PM

Its Nice Really..

After installing this -Boards Forum Jump Menu Can Be Disable ??

As we have a bit long Forum List & sub-forum...
will it be okay ??

tidy_boy 01-09-2006 12:30 PM

Quote:

Originally Posted by Zia
Its Nice Really..

After installing this -Boards Forum Jump Menu Can Be Disable ??

As we have a bit long Forum List & sub-forum...
will it be okay ??

I dont understand this After installing this -Boards Forum Jump Menu Can Be Disable ??

Strat 02-14-2006 08:37 PM

I understand what he's trying to say, albeit with broken English. It's OK. :)

Yes, Zia. The regular Forum Jump menu can be disabled via the Admin CP.

vBulletin Options -> General Settings -> Use Forum Jump Menu. Set to "no."

Strat 02-14-2006 08:53 PM

BTW, I would really enjoy this hack, but in HEADER, I can't find the required text. Here's my entire (small) HEADER template.

PHP Code:

<!-- logo -->
<
a name="top"></a>
<
table border="0" width="$stylevar[outertablewidth]cellpadding="0" cellspacing="0" align="center">
<
tr>
<
td align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]border="0" alt="$vboptions[bbtitle]/></a></td>
</
tr>
</
table>
<!-- /
logo -->

<!-- 
content table -->
$spacer_open

$_phpinclude_output
<form name="spell_form" id="spell_form" method="POST" target="spellWindow" action="vbspell.php">
        <
input type="hidden" name="spell_formname" value="">
        <
input type="hidden" name="spell_fieldname" value="">
        <
input type="hidden" name="spellstring" value="">
</
form

Ideas?

michaelbenson 02-26-2006 06:36 PM

Quote:

Originally Posted by Strat
BTW, I would really enjoy this hack, but in HEADER, I can't find the required text. Here's my entire (small) HEADER template.

PHP Code:

<!-- logo -->
<
a name="top"></a>
<
table border="0" width="$stylevar[outertablewidth]cellpadding="0" cellspacing="0" align="center">
<
tr>
<
td align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]border="0" alt="$vboptions[bbtitle]/></a></td>
</
tr>
</
table>
<!-- /
logo -->

<!-- 
content table -->
$spacer_open

$_phpinclude_output
<form name="spell_form" id="spell_form" method="POST" target="spellWindow" action="vbspell.php">
        <
input type="hidden" name="spell_formname" value="">
        <
input type="hidden" name="spell_fieldname" value="">
        <
input type="hidden" name="spellstring" value="">
</
form

Ideas?

You might have to make the appropriate changes in this case to your navbar template.


All times are GMT. The time now is 11:07 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.01101 seconds
  • Memory Usage 1,800KB
  • 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
  • (4)bbcode_code_printable
  • (2)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (16)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