Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard

Reply
 
Thread Tools
Add New Popup Link Details »»
Add New Popup Link
Version: 1.00, by Logikos Logikos is offline
Developer Last Online: Sep 2023 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 3.0.7 Rating:
Released: 02-13-2004 Last Update: Never Installs: 14
 
No support by the author.

As Requested here http://www.vbulletintemplates.com/mo...ead.php?t=5610 by "Crow"
And im sure alot other will also. I thought it would be very usefull to people new with vB3.

What does it do?
This mod will add a new pop up menu on your navigation box above. See screen shot for a better look.

Very small mod, but usefull.

also included instrustion how to make this only show for members.

Enjoy =\

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #32  
Old 09-21-2004, 05:36 AM
memobug memobug is offline
 
Join Date: Jun 2002
Posts: 418
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by teksigns
anyway to have submenus that open up

inside the main menu ......


???????????
Wow. You asked the same question I did...

But mine was prettier!

Regards,

Matt
Reply With Quote
  #33  
Old 11-09-2004, 09:34 PM
DarkWarriorXII DarkWarriorXII is offline
 
Join Date: Aug 2004
Location: New Jersey, USA
Posts: 55
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Arg am I the only one who can't get this to work?? Mine doesn't work. Here's my code. Can anyone please help me?

Code:
<td id="staff" class="vbmenu_control"><a href="#staff">Staff</a> <script type="text/javascript"> vbmenu_register("staff"); </script></td>
Which is located directly under "<if condition="$show['popups']">".


Then the menu:

Code:
        <!-- staff navigation menu -->
        
        <div class="vbmenu_popup" id="newlink_menu" style="display:none">
                <table cellpadding="4" cellspacing="1" border="0">
                <tr><td class="thead">Navigation</td></tr>
                <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/$modcpdir/index.php?$session[sessionurl]">Moderator CP</a></td></tr>
                <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/$admincpdir/index.php?$session[sessionurl]">Admin CP</a></td></tr>
                </table>
        </div>
        <!-- / staff navigation menu -->
Which is located directly above "<!-- / NAVBAR POPUP MENUS -->".

So what's wrong here? Thank you for any help .
Reply With Quote
  #34  
Old 11-09-2004, 09:57 PM
peterska2 peterska2 is offline
 
Join Date: Oct 2003
Location: Manchester, UK
Posts: 6,504
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
        <!-- staff navigation menu -->
        
        <div class="vbmenu_popup" id="staff" style="display:none">
                <table cellpadding="4" cellspacing="1" border="0">
                <tr><td class="thead">Navigation</td></tr>
                <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/$modcpdir/index.php?$session[sessionurl]">Moderator CP</a></td></tr>
                <tr><td class="vbmenu_option"><a href="$vboptions[bburl]/$admincpdir/index.php?$session[sessionurl]">Admin CP</a></td></tr>
                </table>
        </div>
        <!-- / staff navigation menu -->
Use that instead.

The problem you have there is that in the first section of code you posted you have told it to find a menu called 'staff' then in the second section you had called the menu 'newlink_menu' and so confuzed the poor thing.
Reply With Quote
  #35  
Old 11-10-2004, 12:27 AM
DarkWarriorXII DarkWarriorXII is offline
 
Join Date: Aug 2004
Location: New Jersey, USA
Posts: 55
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay this still isn't working. Go to my forums and click the "Staff" link on the navbar and you'll see what's happening.
Reply With Quote
  #36  
Old 11-10-2004, 10:04 AM
peterska2 peterska2 is offline
 
Join Date: Oct 2003
Location: Manchester, UK
Posts: 6,504
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Move the first bit to above <if condition=$show[popups]> and try that.
Reply With Quote
  #37  
Old 11-10-2004, 05:52 PM
DarkWarriorXII DarkWarriorXII is offline
 
Join Date: Aug 2004
Location: New Jersey, USA
Posts: 55
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I tried it with that code both before and after <if condition=$show[popups]> and it still won't work.
Reply With Quote
  #38  
Old 11-21-2004, 05:02 PM
eL'Bandito eL'Bandito is offline
 
Join Date: Sep 2002
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice 1, just what i'm looking for but... strugglin to download!

is there a post count involved??

///ignore^^ fixed now

Thank you
Reply With Quote
  #39  
Old 11-24-2004, 01:29 AM
secret1980 secret1980 is offline
 
Join Date: Oct 2004
Location: India
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

nice work though will have to check it will do it later
Reply With Quote
  #40  
Old 12-05-2004, 02:00 AM
lmongello lmongello is offline
 
Join Date: Jan 2004
Posts: 54
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK...I got this to work, sort of...

The menu works fine in my forums, but for some reason, it totally screws up the layout of the categories in my Photopost home page.

Here is the code I used:

<td id="newlink" class="vbmenu_control"><a href="#link">Photos</a> <script type="text/javascript"> vbmenu_register("newlink"); </script></td>

::::::::::::::::::::

<!-- / new link menu -->

<div class="vbmenu_popup" id="newlink_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">

<tr><td class="thead">Members' Photos</td></tr>
<tr><td class="vbmenu_option"><a href="http://www.mysite.com/photos/">Photo Gallery</a></td></tr>

<tr><td class="thead">Photo Forums</td></tr>
<tr><td class="vbmenu_option"><a href="http://mysite.com/forums/forumdisplay.php?f=80">Photo Contests</a></td></tr>
<tr><td class="vbmenu_option"><a href="http://mysite.com/forums/forumdisplay.php?f=19">Photo Forum</a></td></tr>

</table>
</div>
<!-- / new link menu -->

:::::::::::::::::::::::::::::::::::::::::::;

Any clues as to what I did wrong?

Thanks!!!!
Reply With Quote
  #41  
Old 12-10-2004, 03:09 PM
Hawkwind Hawkwind is offline
 
Join Date: Mar 2004
Posts: 2
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the great hack. I got the menu added and working great, but only one problem.

Now my Search and Quick Links don't drop down
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 04:56 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.11615 seconds
  • Memory Usage 2,303KB
  • Queries Executed 25 (?)
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
  • (3)bbcode_code
  • (1)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
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete