Rating: 5 stars
THIS PLUGIN NO LONGER WORKS AT ALL. i KEPT FORGETTING THAT I HAD IT IN MY FAVORITES AND IT KEPT GETTING INSTALLED.. DUH, ON MY PART.. HOWEVER. IT SHUTS EVERYTHING ELSE DOWN AND THEN I SPEND TONS OF TIME TRYING TO FIGURE OUT WHAT WENT WRONG AND SAME AS BEFORE, IT’S THIS PLUGIN, SO YES, I HAVE FINALLY TOOK IT OFF MY FAVORITES. JUST BEWARE IF YOUR SITE GOES CAPLOOEY AND YOU HAVE THIS PLUGIN.. 99% SURE THAT IS WHAT IT IS.
]]>Rating: 5 stars
Worked great, exactly what I needed, thanks alot. Works great if you made your own menu without a plugin
]]>Rating: 3 stars
When I switch on effects, the menu doesn’t work. I guess it’s a JQuery version problem.
I still like the plugin, though.
Rating: 4 stars
But there are a couple of issues:
"current-menu-item"
class is converted to selected="selected"
too soon. It should take place after the "nav_menu_css_class"
filter. Here’s why."items_wrap"
(from wp_nav_menu
) is a useless option now that you’ve overridden it. If there is no way around this, what about adding an items_wrap2
or similar to preserve functionality?Thanks!
]]>Rating: 5 stars
I never imagined this would be as easy as it was. In my case I’m using a specific mobile theme and a switcher plugin. Four simple steps:
1. Upload dropdown-menus.php file in /dropdown/ folder of Mobile theme
2. Add code to mobile theme’s function.php to ‘include’ the plugin (not sure if this is necessary):
if ( ! function_exists( 'dropdown_menu' ) )
include( 'dropdown/dropdown-menus.php' );
3. Add dropdown_menu function call code to header.php, e.g. below logo, see plugin description. Something like:
$ddargs = array(
'dropdown_title' => '[Main Menu]', // text to show when on page not in menu
'indent_string' => '- ', // text to show before 'indented' sub-menu item, repeated
'indent_after' => '' // text to show for sub-menu, NOT repeated
);
dropdown_menu( $ddargs );
4. Style CSS: e.g. Add css to Mobile theme’s style.css
.menu-top-menu-container {
padding:5px;
background-color: #e2e2e2;
}
Thanks!
]]>