Home > WordPress Menubar > WP Menubar 3.0 beta

WP Menubar 3.0 beta

February 20th, 2008

Just a quick note to let you know that WP Menubar 3.0 beta is ready. If you wish to test this beta, please go to the Download page and get your copy. Then you can report any bugs you find by writing a comment to this post.

The main new feature of version 3.0 is the ability to build hierarchical menus; there are also a few usability improvements in the admin interface, I’ll let you see by yourselves. Some last-minute features might be added in version 3.0 final.

I hope that 3.0 final will be ready soon after the release of WordPress 2.5. Enjoy!

Update February 27: version beta 2 is available, to fix a problem with dropdowns in Internet Explorer.

Update March 1: version beta 3 is available, to fix the previous fix – sorry!

Update March 2: WP Menubar documentation is ready!

Update March 30: version beta 4 is available. Changes are:
– it now works with WordPress 2.5!
– PageTrees (or CategoryTrees) may now contain all your Pages (or Categories);
– Menubar 3.0 no longer accepts menu templates intended for Menubar 2.x (and viceversa), since they are incompatible.

Update April 27: version beta 5 is available, with a fix to make it work with more than one menu. Thanks to all of you who keep reporting bugs!

Update June 24: version beta 6 is available. This version corrects a few CSS problems, and introduces the Heading, a non clickable item type used for instance as the parent of a set of children items.

Categories: WordPress Menubar
  1. aquadat0r
    February 21st, 2008 at 08:04 | #365

    Hi,

    So far so good, gr8 work.

    A

  2. February 27th, 2008 at 12:59 | #366

    I’m going to look at that but I have found a solution for the problem I talked about in your last post (maybe it is the same as yours) : put that line

    before the first in the footer of the theme, it works great !

  3. February 27th, 2008 at 13:00 | #367

    Argh, I’m going to send you this by mail !

  4. March 22nd, 2008 at 19:23 | #368

    Great menu! Got it working right away, however how can I get a vertical display of categories with a horizontal fly out of sub categories?

  5. March 26th, 2008 at 22:51 | #369

    Hi Tim,
    I’m completing a vertical menu template, I’ll let you know when it’s ready!

  6. Mattz
    April 27th, 2008 at 14:11 | #370

    I descovered an issue that we might want to solve.

    balbalbla

    blebelble

    The first UL is an issue because if you set a class for it, it will apply on all li’s below it too when you don’t set an class to them.

  7. Mattz
    April 27th, 2008 at 14:12 | #371

    here the code again

    div id=”nav”>
    ul>
    li class=”navli”>balbalbla
    ul>
    li class=”active”>blebelble
    /ul>
    /ul>
    /div>

  8. Mattz
    April 27th, 2008 at 15:21 | #372

    Another thing that I see is when you add you own class to a menu item, the menu does not dissapear anymore when you move your mouse.

    This is quite an issue.

    Would it not be ideal to move “active” also away from css when you put your own in a menu item ?

  9. April 27th, 2008 at 22:39 | #373

    Hello Mattz,
    thank you for your reports, I’m going to look into the class thing in the next few days. I’ll let you know!

  10. June 11th, 2008 at 17:55 | #374

    Help! I love this plugin, it’s extremely flexible and easy to use. But I’m experiencing a bug (agencycritique.com). When I go to “manage menubar” in admin it is not displaying all the pages in my menu. All the sub pages under “consulting services” are missing as well as a few new sub pages I added under the About Me” section. These pages are showing up on the live site, just not in admin. I need to re-order the pages under “About Me” and can’t without the admin view. Any ideas?

  11. June 11th, 2008 at 22:45 | #375

    Hello Eric,
    I can suggest the following procedure:
    - deactivate Menubar;
    - delete the wp-content/plugins/menubar folder (after saving a copy of wp-content/plugins/menubar/Suckerfish/wpm3.css, which contains your CSS customizations);
    - reinstall a freshly downloaded copy of Menubar and reactivate it;
    - replace wp-content/plugins/menubar/Suckerfish/wpm3.css with your saved copy.

    If that doesn’t solve the problem, then I’ll need to see the Menubar table from your database. Could you export it and send it to andrea AT dontdream.it?

  12. Derek
    June 16th, 2008 at 09:25 | #376

    Just had a question, is there a way to change the width of the menu bar? It’s naturally just a few pixles to wide for the theme. I tried to change the margins in the css file but that did nothing for me. Thanks!

  13. Spirit
    June 16th, 2008 at 21:31 | #377

    Hey Andrea,
    Great Widget!
    I have a few issues however because I need images within the menu and was hoping that you could help me out.
    I’ve managed to add an extra div to the top level links using the wpm3.php file – I needed 2 background images for each tab so that the tab image stretches to match longer and shorter tab (link) titles. This works great other than a bit of a flashing issue in IE6.
    My issue is that I need little arrow icons in the drop down and flyout menus next to each link that has a subsequent drop down or flyout, but I don’t want arrows beside EVERY link! Just those that have another sub-menu. Problem is I can’t find where to add another div tag – any changes I make to the wpm3.php ONLY affect the top level links and the very end of each sub-menu. Where do I go in the .php files to see the structure of the actual sub-menus? Or can you think of another way to accomplish this?
    I am using the Page-Tree set-up so that it is nice and easy for the client to update. Maybe this is only possible if I add each page individually?

    BTW. I love that it automatically updates the menu whenever a page is added!

    Thanks Andrea!

  14. June 16th, 2008 at 23:13 | #378

    Hello Derek,

    please make sure you modified the right line, try changing:

    #wpmnav {
    margin: 10px 10px 0 10px;

    }

    with, for instance

    #wpmnav {
    margin: 10px 8px 0 8px;

    }

    Let me know if this works for you!

  15. June 16th, 2008 at 23:26 | #379

    Hello Spirit,

    in a PageTree set-up the sub-menus are generated by calling the WordPress function wp_list_pages(), so the generated HTML is not controlled by the plugin code.

    If you don’t use the PageTree but just add each page individually, the whole menu structure is generated by the plugin code, so you can modify it according to your needs.

    Hope this helps!

  16. Derek
    June 18th, 2008 at 00:06 | #380

    That worked out, thanks! Another question I had is how you get the drop down menus to change color or something when the mouse is over it? Also including the parent menu to change color when you are on a sub menu. Are there any other templates for v3 beta 5? Other than Suckerfish? Thanks!

  17. June 18th, 2008 at 00:28 | #381

    Hi Derek,

    currently there is only one template for 3.0 beta, but of course you can customize the CSS file to suit your preferences. To change the mouse-over style, you can change the rule

    #wpmnav li:hover,
    #wpmnav li.wpmhover {
    background: #1C86EE;
    }

    and/or add another rule like

    #wpmnav li:hover a,
    #wpmnav li.wpmhover a {
    color: red;
    }

    Happy customization!

  18. James
    July 4th, 2008 at 13:43 | #382

    Another bug – using Firefox 3.0 the menus disappear under the following condition:

    1. Move your pointer over a column and move down over a link as normal.
    2. Hold the pointer still for a second or two (inactive)
    3. Move the pointer slightly, still within the menu however

    The menubar disappears, as if it thinks you’ve moved outside the menu.

  19. July 5th, 2008 at 23:23 | #383

    Hi James,

    thanks for your feedback, I’m going to install Firefox 3.0 to dig into this!

  20. azri
    September 6th, 2008 at 18:44 | #384

    Thanks for the great plugin.
    How can you make a page/subpage non clickable like on your menu “WP Menubar > Templates for 2.3″

    Thanks.

  21. September 6th, 2008 at 19:27 | #385

    Hi Azri,
    you have to use the “Heading” type for your menu item (you need Menubar 3.0 beta 6 for this, “Heading” is not available in the previous versions).

Comments are closed.