Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Menu Control Details »»
Menu Control
Version: 1.3, by Marky Marky is offline
Developer Last Online: May 2012 Show Printable Version Email this Page

Version: 3.5.3 Rating:
Released: 01-06-2006 Last Update: 02-04-2006 Installs: 277
Uses Plugins Template Edits
 
No support by the author.

Hey all,

What is Menu Control?
This modification, installs a second navagation bar below the original one, and best of all, it's admin controllable! Menu Control is a very easy to use modification, and it takes less than a minute to install!

What can I do using Menu Control?
The features of Menu Control include:
* Forum Directory - Ability to change your forum directory
* Nine Customizable Menu Links - Gives the ability to add, modify or remove nine customizeable
Menu Links!
* HTML Ready - Gives the ability to use HTML in the menu links! Add colour or style to your
links!
** On / Off Capability - The ability to turn your menu online and off.
*** Format Techniques - The ability to change the colour of your menu links.
*** External Links - The ability to link to external links from the links in your menu.
**** Window Features - The ability to change how your links open.
**** Colour Switch - The ability to turn the colour of your links on and off.
**** Menu Images - The ability to put an image next to each of your menu items.
**** Menu Image Switch - The ability to turn all images off and on.


* = Features in 1.0
** = Features in 1.1
*** = Features in 1.2
**** = Features in 1.3 Final

How long will it take me to install Menu Control?
Menu Control is a very easy modification to install. It should take no more than 1 minute to install! It comes with a product file, so all you have to do is import the included product file, edit one template and the modification is installed!

Support
For support on this mod, you can go to either:
MgArcade.com

Or

Post in this topic!

Suggestions
Got a suggestion? Post it here, PM me, or email me, I will try my best to include it in a future version.

Credits
Menu Control was Created By: Marky

Other
You must not allow this file for download anywhere but vbulletin.org without the consent of Mark Spiers (Marky)

If you install this modification, please click 'Install' to show your support!

Would you like to donate to me? I'd be extremely grateful, no matter the amount!


Current Version: 1.3

Features in Version 1.3
**** Window Features - The ability to change how your links open.
**** Colour Switch - The ability to turn the colour of your links on and off.
**** Menu Images - The ability to put an image next to each of your menu items.
**** Menu Image Switch - The ability to turn all images off and on.

Features in Version 1.2
*** Format Techniques - The ability to change the colour of your menu links.
*** External Links - The ability to link to external links from the links in your menu.

Features in Version 1.1
** On / Off Capability - The ability to turn your menu on and off.

Thanks,

Marky

Show Your Support

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

Comments
  #52  
Old 01-09-2006, 12:02 PM
Marky's Avatar
Marky Marky is offline
 
Join Date: Aug 2004
Location: UK
Posts: 321
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mkdevo
cool hack.

i would also like to see the option to place it at the top of bottom of the navbar. is this planned?
Hello mkdevo,

This option will hopefully be in the next release. If not I will definatly include where to place the code to put the navbar in different places. But once I get time, i'll get round to making that option admin controllable

Thanks,

Marky
Reply With Quote
  #53  
Old 01-09-2006, 12:18 PM
RaceJunkie RaceJunkie is offline
 
Join Date: Jun 2005
Posts: 371
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mkdevo
cool hack.

i would also like to see the option to place it at the top of bottom of the navbar. is this planned?
To place at the top.

in the navbar template.

Find:
Code:
<!-- breadcrumb, login, pm info -->
Above That add:

Code:
<!-- top nav buttons bar -->
<!-- MENU CONTROL ITEMS -->
<div align="center">
	<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
	<tr align="center">
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_one']}">{$vboptions['menu_item_one']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_two']}">{$vboptions['menu_item_two']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_three']}">{$vboptions['menu_item_three']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_four']}">{$vboptions['menu_item_four']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_five']}">{$vboptions['menu_item_five']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_six']}">{$vboptions['menu_item_six']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_seven']}">{$vboptions['menu_item_seven']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_eight']}">{$vboptions['menu_item_eight']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_nine']}">{$vboptions['menu_item_nine']}</a></td>
	</tr>
	</table>
</div>
<!-- / #END MENU CONTROL ITEMS -->
<!-- / top nav buttons bar -->
You don't have to include the

<!-- top nav buttons bar -->
and
<!-- / top nav buttons bar -->

I do this just so I know what it is..
Reply With Quote
  #54  
Old 01-09-2006, 01:28 PM
Marky's Avatar
Marky Marky is offline
 
Join Date: Aug 2004
Location: UK
Posts: 321
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by RaceJunkie
To place at the top.

in the navbar template.

Find:
Code:
<!-- breadcrumb, login, pm info -->
Above That add:

Code:
<!-- top nav buttons bar -->
<!-- MENU CONTROL ITEMS -->
<div align="center">
	<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
	<tr align="center">
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_one']}">{$vboptions['menu_item_one']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_two']}">{$vboptions['menu_item_two']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_three']}">{$vboptions['menu_item_three']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_four']}">{$vboptions['menu_item_four']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_five']}">{$vboptions['menu_item_five']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_six']}">{$vboptions['menu_item_six']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_seven']}">{$vboptions['menu_item_seven']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_eight']}">{$vboptions['menu_item_eight']}</a></td>
		<td class="vbmenu_control"><a href="{$vboptions['menu_directory']}{$vboptions['menu_link_nine']}">{$vboptions['menu_item_nine']}</a></td>
	</tr>
	</table>
</div>
<!-- / #END MENU CONTROL ITEMS -->
<!-- / top nav buttons bar -->
You don't have to include the

<!-- top nav buttons bar -->
and
<!-- / top nav buttons bar -->

I do this just so I know what it is..
Yes I will be including this along with other options in the next release
Reply With Quote
  #55  
Old 01-09-2006, 04:38 PM
Marky's Avatar
Marky Marky is offline
 
Join Date: Aug 2004
Location: UK
Posts: 321
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Version 1.2 Released - Features Below
*** Format Techniques - The ability to change the colour of your menu links.
*** External Links - The ability to link to external links from the links in your menu.

In this version, I have included complete documentation on installing, all previous and current versions. I have also included 'Navbar Positioning', which allows you to place your second navbar in a different position

Please read the included read-me file for information on the latest version and future versions etc.

Thanks,

Marky
Reply With Quote
  #56  
Old 01-09-2006, 05:08 PM
Lance Carbuncle Lance Carbuncle is offline
 
Join Date: Oct 2004
Location: California
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello Marky,

I upgraded and really love the progress....

Now on forums that have lots of pages.... the bar moves from below the original navbar to above, but when this happens, the dropdown menu on search and quick links doesn't work and causes errors on the page....

check here:

http://www.forums.repashy.com/forumdisplay.php?f=15

Thanks, this in one of the most useful plugins to date!
Reply With Quote
  #57  
Old 01-09-2006, 05:15 PM
bogene2020 bogene2020 is offline
 
Join Date: Apr 2002
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just upgraded to 1.2 this is brilliant I wonder why it took so long for a hack like this this hack to be written. If you have to add anything else it would be the ability to add drop downs to the links . I installed this hack because I was trying to add more links . It lets you and links to your existing navbar . Thanks for the great work
Reply With Quote
  #58  
Old 01-09-2006, 05:15 PM
Marky's Avatar
Marky Marky is offline
 
Join Date: Aug 2004
Location: UK
Posts: 321
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lance Carbuncle
Hello Marky,

I upgraded and really love the progress....

Now on forums that have lots of pages.... the bar moves from below the original navbar to above, but when this happens, the dropdown menu on search and quick links doesn't work and causes errors on the page....

check here:

http://www.forums.repashy.com/forumdisplay.php?f=15

Thanks, this in one of the most useful plugins to date!
lol that is unusual :P
I'll look around and experiment and post here if I find a cure
Reply With Quote
  #59  
Old 01-09-2006, 05:17 PM
Marky's Avatar
Marky Marky is offline
 
Join Date: Aug 2004
Location: UK
Posts: 321
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bogene2020
I just upgraded to 1.2 this is brilliant I wonder why it took so long for a hack like this this hack to be written. If you have to add anything else it would be the ability to add drop downs to the links . I installed this hack because I was trying to add more links . It lets you and links to your existing navbar . Thanks for the great work
Pop-down menus will definatly be in the next version
Reply With Quote
  #60  
Old 01-09-2006, 06:23 PM
RaceJunkie RaceJunkie is offline
 
Join Date: Jun 2005
Posts: 371
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lance Carbuncle
Hello Marky,

I upgraded and really love the progress....

Now on forums that have lots of pages.... the bar moves from below the original navbar to above, but when this happens, the dropdown menu on search and quick links doesn't work and causes errors on the page....

check here:

http://www.forums.repashy.com/forumdisplay.php?f=15

Thanks, this in one of the most useful plugins to date!

I think this is a skin issue. Why do I say this? If you go to http://www.forums.repashy.com/showthread.php?t=1177 you will notice that the drop down when you click on a users name does not work either.

Now visit http://www.forums.repashy.com/showthread.php?t=1771 and it works..

Try removing the plugin and try that search drop down without it and also clicking on user names with threads more than 1 page..

I had a skin that done this very same thing. I had to get the developer to fix.. :surprised:
Reply With Quote
  #61  
Old 01-09-2006, 07:09 PM
Marky's Avatar
Marky Marky is offline
 
Join Date: Aug 2004
Location: UK
Posts: 321
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by RaceJunkie
I think this is a skin issue. Why do I say this? If you go to http://www.forums.repashy.com/showthread.php?t=1177 you will notice that the drop down when you click on a users name does not work either.

Now visit http://www.forums.repashy.com/showthread.php?t=1771 and it works..

Try removing the plugin and try that search drop down without it and also clicking on user names with threads more than 1 page..

I had a skin that done this very same thing. I had to get the developer to fix.. :surprised:
Hmm interesting
I'd be interested in finding out, so make sure you post if it's a problem with the skin or if there's still a problem
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 06:11 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07411 seconds
  • Memory Usage 2,338KB
  • 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
  • (4)bbcode_code
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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