vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3 Articles (https://vborg.vbsupport.ru/forumdisplay.php?f=187)
-   -   How To Add Drop Down Menus To Your Navbar (https://vborg.vbsupport.ru/showthread.php?t=122523)

Lynne 09-16-2009 04:17 PM

Quote:

Originally Posted by slobra (Post 1885804)
Ok, sorry for bumping this thread and I feel kinda stupid asking for help because it shouldn't be very hard. I've followed the instructions to a T, read all the replies here, and still no luck - I can't get anything to show up! Website is http://truestreetcars.com using 3.8.2. Any help is appreciated. :) Current navbar template:

You never added it to your navbar. You only did the second part of the instructions (the dropdown part).

slobra 09-16-2009 05:17 PM

Quote:

Originally Posted by Lynne (Post 1885815)
You never added it to your navbar. You only did the second part of the instructions (the dropdown part).

Oh. Duh. Sorry to bother you. Thanks for kickstarting my brain! :D

GoTTi 09-24-2009 03:25 AM

i cant get this to work in 3.8.4....do the instructions on the first post work in 3.8.4?

Lynne 09-24-2009 03:29 AM

Quote:

Originally Posted by GoTTi (Post 1889757)
i cant get this to work in 3.8.4....do the instructions on the first post work in 3.8.4?

Yes. But, if you are using a custom style, you may have to change things slightly due to changes between the default style and your custom style.

steeler7 10-27-2009 02:49 PM

I've tried to get this work and no luck. It hasn't showed up in the nav bar for me. For a quick instance it showed up next to my log in information, but that disappeared.

Here's my code. As far as I can see for Step 1 I found the correct.

Here's my code broken up with the bolded parts being what I had added in. If the entire code is needed, let me know. I figured this would might be easy to determine if and where I messed up

Code:

<if condition="$show['notifications']">
                        <div><span id="notifications"><a href="usercp.php$session[sessionurl_q]">$vbphrase[your_notifications]:</a> <strong>$notifications_total</strong></span></div>
                        <if condition="$show['popups']">
<td id="links" class="vbmenu_control">
    <a href="http://www.pittsburghsportstavern.com/cmps_index.php?pageid=steelersaffiliates">Links</a>
    <script type="text/javascript">
        vbmenu_register("links");
    </script>
</td>


                                <script type="text/javascript"> vBmenu.register("notifications"); </script>
                        <else />
                                <script type="text/javascript"


Code:

<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->

<div class="vbmenu_popup" id="links_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
        <tr>
            <td class="thead">Links</td>
        </tr>
<tr>
            <td class="thead">Steelers Links</td>
        </tr>
        <tr>
            <td class="vbmenu_option" title="nohilite">
<a href="http://www.pittsburghsportstavern.com/cmps_index.php?pageid=steelersaffiliates">Steelers Affiates</a>
</td>
</tr>
<tr>
            <td class="vbmenu_option" title="nohilite">
<a href="http://www.pittsburghsportstavern.com/cmps_index.php?pageid=steelersnewslinks">Steelers News Sites</a>
</td>
</tr>
            <td class="vbmenu_option" title="nohilite">
<a href="http://www.pittsburghsportstavern.com/cmps_index.php?pageid=nflsites">NFL News And Info</a>
</td>
</tr>
<tr>
            <td class="thead">Penguins Links</td>
        </tr>
            <td class="vbmenu_option" title="nohilite">
<a href="http://www.pittsburghsportstavern.com/cmps_index.php?pageid=penstavernaffiliates">Pens Affiliates</a>
</td>
</tr>
            <td class="vbmenu_option" title="nohilite">
<a href="http://www.pittsburghsportstavern.com/cmps_index.php?pageid=pensnewssites">Pens News Sites</a>
</td>
</tr>
            <td class="vbmenu_option" title="nohilite">
<a href="http://www.pittsburghsportstavern.com/cmps_index.php?pageid=nhlnews">NHL News And Info</a>
</td>
</tr>
<tr>
            <td class="thead">Piarates Links</td>
        </tr>
            <td class="vbmenu_option" title="nohilite">
<a href="http://www.pittsburghsportstavern.com/cmps_index.php?pageid=piratesfriends">Pirates Affiliates</a>
</td>
</tr>
            <td class="vbmenu_option" title="nohilite">
<a href="http://www.pittsburghsportstavern.com/cmps_index.php?pageid=piratesnews">Pirates News Sites</a>
</td>
</tr>
            <td class="vbmenu_option" title="nohilite">
<a href="http://www.pittsburghsportstavern.com/cmps_index.php?pageid=mlbnews">MLB News And Info</a>
</td>
</tr>
</table>
</div>

        <if condition="$show['communitylink']">
        <!-- community link menu -->


Lynne 10-27-2009 03:34 PM

You are adding the code into your navbar where the Notifications are supposed to go. You need to add it amongst the other navbar links.

steeler7 10-27-2009 05:12 PM

Ah... Thank you. I had been wondering why I wasn't putting any code where the Nav Buttons are. I guess for 3.8 it would be the 2nd instance of
Code:

<if condition=$show['popups']">
One mroe quick question... I don't want the "nohilite" feature. Do I just delete >>title="nohilite"<<?

Lynne 10-27-2009 05:16 PM

Quote:

Originally Posted by steeler7 (Post 1907025)
One mroe quick question... I don't want the "nohilite" feature. Do I just delete >>title="nohilite"<<?

Try it and see. (Sorry, I've always left that there, so I don't know what happens if you remove it.)

Karm4 11-09-2009 01:03 PM

Will this work with
PHP Code:

<if>
<if 
condition="is_member_of($bbuserinfo, 5, 6, 7)"

I want to make sure the menu is only shown to those usergroups. It works right now with a direct link but now i need more menus underneath it.

Lynne 11-09-2009 03:46 PM

I don't know why you have that extra <if>. This should work:
PHP Code:

<if condition="is_member_of($bbuserinfo, 5, 6, 7)">  
stuff only to be seen by members of usergorup 5,6,7
</if> 



All times are GMT. The time now is 05:34 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.01240 seconds
  • Memory Usage 1,756KB
  • 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
  • (3)bbcode_code_printable
  • (2)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete