vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Menu Control (https://vborg.vbsupport.ru/showthread.php?t=104725)

RaceJunkie 01-08-2006 05:57 PM

Is it possible to have two of these that work independently? One for the top and one for the bottom. Then I could do away with having to edit the navbar template everytime I add a new link

Marky 01-08-2006 05:59 PM

Quote:

Originally Posted by RaceJunkie
Is it possible to have two of these that work independently? One for the top and one for the bottom. Then I could do away with having to edit the navbar template everytime I add a new link

Well it's been on my mind, I was thinking about adding it into the next version, but I didn't know what everyone's thought are on it. So you want to be able to have complete control over both navbar's?

RaceJunkie 01-08-2006 06:06 PM

Quote:

Originally Posted by Marky_
Well it's been on my mind, I was thinking about adding it into the next version, but I didn't know what everyone's thought are on it. So you want to be able to have complete control over both navbar's?

Yes. I took and put this one on a test site and have it at the top of the navbit. The original navbar is on the bottom, Similiar to the Double navigation bar. If I could add another to the bottom to replace the original, there would be no need to edit the navbar template any more. I know that there would be a permissons issue for some of the links but if you ever implement that into it, we could do away with the default nav bar in vb, which is a pain in the butt to have to edit when you have custom styles.


This is a great plugin by the way :smoke:

Floris 01-08-2006 06:16 PM

Cool mod :D I had something like this for version 2.2.1 of b, but never released it because it was uber buggy :D ool to see the idea in action for 3.x

Marky 01-08-2006 06:17 PM

Quote:

Originally Posted by RaceJunkie
Yes. I took and put this one on a test site and have it at the top of the navbit. The original navbar is on the bottom, Similiar to the Double navigation bar. If I could add another to the bottom to replace the original, there would be no need to edit the navbar template any more. I know that there would be a permissons issue for some of the links but if you ever implement that into it, we could do away with the default nav bar in vb, which is a pain in the butt to have to edit when you have custom styles.


This is a great plugin by the way :smoke:

I'll look into it for the next version ;)

Thanks for the comments guys ^_^

sidekick 01-08-2006 06:24 PM

[high]* sidekick updated to 1.1
[/high]

cool mod :)

Mith 01-08-2006 07:13 PM

Would be cool to have a permissions option of which usergroups that could view the navbar.

A excellent feature would be to have an option to add a little icon next to each link.
If you can add dropdown menu's in some way then this will replace my second Navbar I already have installed.


Great stuff!

Lance Carbuncle 01-08-2006 09:08 PM

I am having a strange thing happen..... the menubar is not showing up some places.... it is on the main forum menu.....
http://www.forums.repashy.com/index.php?

but not at the top of the subforum as here:

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

but it does show up on some.... like here: http://www.forums.repashy.com/forumdisplay.php?f=65

any idea?

PS..... this is an AWESOME tool

Developer 01-09-2006 05:46 AM

Quote:

Originally Posted by Marky_
Version 1.1 Released
This version gives you the ability to turn your menu on and off via the admincp controls settings.

Version 1.2 will be released soon and will contain the features mentioned in this Thread.

Thanks,

Marky

updated and waiting for 1.2

mkdevo 01-09-2006 11:02 AM

cool hack.

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

Marky 01-09-2006 12:02 PM

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

RaceJunkie 01-09-2006 12:18 PM

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..

Marky 01-09-2006 01:28 PM

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 :)

Marky 01-09-2006 04:38 PM

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

Lance Carbuncle 01-09-2006 05:08 PM

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!

bogene2020 01-09-2006 05:15 PM

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

Marky 01-09-2006 05:15 PM

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 ;)

Marky 01-09-2006 05:17 PM

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 ;)

RaceJunkie 01-09-2006 06:23 PM

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:

Marky 01-09-2006 07:09 PM

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 :D
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 :)

benzz0 01-09-2006 07:10 PM

Quote:

Originally Posted by Daniel
Will be sure to check it out :)

put this on my test forum...VERY nice!


Thanks!

Ben

XtremeOffroad 01-09-2006 09:34 PM

As nice as this is and glad to see updates, I think I'll stick with the 1.1 version (Pre Color Changes).
On a forum with white and black themes it's hard to find a happy medium on the color.
The default of past versions really seem to match the site and theme much better especially if you have several themes installed.
Just my 2 cents but still a Great addition.

BrandiDup 01-09-2006 09:54 PM

Installed and working perfectly. Great hack. Thank you very much!

jw00dy 01-09-2006 10:34 PM

VERY Cool! I really like this mod! Very easy and works like a charm (note - default skin).

puertoblack2003 01-09-2006 10:58 PM

1 problem when i click on the link it takes me to microsoft.com after the upgrade :rolleyes:



EDIT:::::::::::::::::::::::::::::::::::
disregard post dummy me have to remove the http:// which in the txt file did not instructed info was found in admincp...great upgraded it

Lance Carbuncle 01-10-2006 01:18 AM

Quote:

Originally Posted by Marky
Hmm interesting :D
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 :)

well, here is progress report so far.... I left the plugin installed and reverted the navbar to default and the bar still shows up on the main pages, but dissapears completely on pages where the forum shows multiple pages..... really weird... I am going to try installing it above the navbar and see what happens. the search and quicklink dropdowns to function on the pages where the bar doesn't show up though..... stay tuned.... Allen

Update.....

I completely removed it and my forum functions properly with the dropdown menu's....

I reinstalled the program and followed the navbar instructions to put it at the top, and it still showed up at the bottom on the main pages and top on others..... strange....

Marky.... if you want access to my admin control menu to see if you can figure it out, send me a pm..... Allen

Developer 01-10-2006 05:50 AM

updated and waiting for 11.0 :D

Developer 01-10-2006 10:56 AM

Suggestions:
*able to add or delete more items*
*able to add pics. buttons with a hover text*
*usergroup (from my choice) can see the menu*
*able to add more than one menu*

Marky 01-10-2006 02:27 PM

Quote:

Originally Posted by nievesidenshop
1 problem when i click on the link it takes me to microsoft.com after the upgrade :rolleyes:



EDIT:::::::::::::::::::::::::::::::::::
disregard post dummy me have to remove the http:// which in the txt file did not instructed info was found in admincp...great upgraded it

Hehe yes, I only included this in the admincp, I saw no point in putting anything about the hack in the text files. Hopefully, in the next version I'll include admin help files ;)

Quote:

Originally Posted by Lance Carbuncle
well, here is progress report so far.... I left the plugin installed and reverted the navbar to default and the bar still shows up on the main pages, but dissapears completely on pages where the forum shows multiple pages..... really weird... I am going to try installing it above the navbar and see what happens. the search and quicklink dropdowns to function on the pages where the bar doesn't show up though..... stay tuned.... Allen

Update.....

I completely removed it and my forum functions properly with the dropdown menu's....

I reinstalled the program and followed the navbar instructions to put it at the top, and it still showed up at the bottom on the main pages and top on others..... strange....

Marky.... if you want access to my admin control menu to see if you can figure it out, send me a pm..... Allen

Recieved your PM, and have replied :) I'd be happy to help ;)

Quote:

Originally Posted by Developer
Suggestions:
*able to add or delete more items*
*able to add pics. buttons with a hover text*
*usergroup (from my choice) can see the menu*
*able to add more than one menu*

Thanks for the suggestions, these help alot so I can include as many features into the hack as possible ;)
The suggestion 'Able to add more than one menu' will appear in a future version, once I have added many more features to the current navbar. I will be introducing the ability to admin control the original navbar also (I would like to know your input of this please, if you want this feature, tell me so I can include this ;))

Thanks for your kind comments all, and enjoy the hack ;)

- Marky

Developer 01-10-2006 04:42 PM

Quote:

(I would like to know your input of this please, if you want this feature, tell me so I can include this )
yeah,include this but make it optionally

Marky 01-10-2006 07:49 PM

I've added the features I'm going to include in the next version on the mod display. I will update this list when needed!

I've decided Version 1.3 will include:

* Easier Installation - That's right, as if this mod isn't already easy, it's about to get easier! Version 1.3 will include automatic template installation, you just add one line of text in the appropriate area ;)
* Images Next to links - Gives the ability to place images next to each individual link. With the option to not have images turned on!

After this version, I will go to production on version 2.0. It should include the following features:

* Original Navbar Administration - Gives you the ability to change the links on the original navbar (Admin-Controlled!)
* 'Pop-down' Links - Gives the ability to create one - two vB javascript menus.
* Menu Move-about - Ability to choose where the menu is (Admin-Controlled).

Thanks,

Marky

RaceJunkie 01-11-2006 12:53 AM

Quote:

Originally Posted by Marky
I've added the features I'm going to include in the next version on the mod display. I will update this list when needed!

I've decided Version 1.3 will include:

* Easier Installation - That's right, as if this mod isn't already easy, it's about to get easier! Version 1.3 will include automatic template installation, you just add one line of text in the appropriate area ;)
* Images Next to links - Gives the ability to place images next to each individual link. With the option to not have images turned on!

After this version, I will go to production on version 2.0. It should include the following features:

* Original Navbar Administration - Gives you the ability to change the links on the original navbar (Admin-Controlled!)
* 'Pop-down' Links - Gives the ability to create one - two vB javascript menus.
* Menu Move-about - Ability to choose where the menu is (Admin-Controlled).

Thanks,

Marky


It just keeps getting better :smoke:

Developer 01-11-2006 07:04 AM

Quote:

Originally Posted by Marky
I've added the features I'm going to include in the next version on the mod display. I will update this list when needed!

I've decided Version 1.3 will include:

* Easier Installation - That's right, as if this mod isn't already easy, it's about to get easier! Version 1.3 will include automatic template installation, you just add one line of text in the appropriate area ;)
* Images Next to links - Gives the ability to place images next to each individual link. With the option to not have images turned on!

After this version, I will go to production on version 2.0. It should include the following features:

* Original Navbar Administration - Gives you the ability to change the links on the original navbar (Admin-Controlled!)
* 'Pop-down' Links - Gives the ability to create one - two vB javascript menus.
* Menu Move-about - Ability to choose where the menu is (Admin-Controlled).

Thanks,

Marky

great marky but don't forget
Quote:

*able to add or delete more items*

Skaterscafe.com 01-11-2006 08:29 AM

Very nice!! THANK YOU!

ambumann 01-11-2006 02:02 PM

Looking forward to see the new version!

Marky 01-11-2006 02:20 PM

Quote:

Originally Posted by Developer
great marky but don't forget

I'll definatly look into it, but I'm not promising anything :P

Developer 01-11-2006 02:25 PM

you can use the code in this hack
https://vborg.vbsupport.ru/showthread.php?t=98934
with some edit

Marky 01-11-2006 03:24 PM

Quote:

Originally Posted by Developer
you can use the code in this hack
https://vborg.vbsupport.ru/showthread.php?t=98934
with some edit

hehe - that's called stealing ;)
I'll definatly, like I said, look into the possibility. Of course I will clean up the admincp of it, but it will probably be in the version above 2.0 :)

Also, i'm a little short on funds, and since im doing this mod for free, I thought maybe you'd like to donate :) This isn't compulsory, of course, but if you have some spare cash and like the mod, just use the link on the main screen! I will be thankful how ever small or large the amount :D

quanvo81 01-11-2006 04:28 PM

great hack, this is what I need, many thanks. Clicked Install

Gripemaster 01-11-2006 05:45 PM

AWESOME!!! Just EXACTLY what I needed!!!

*Clicks install*

Thank you! :banana:


All times are GMT. The time now is 02:29 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.02267 seconds
  • Memory Usage 1,872KB
  • 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
  • (22)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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