Using Max Mega Menu with Thesis 2.1 is showing 2 menus
-
This is my test page: https://www.samueldupont.com
First, I want to say that this is an amazingly designed plugin. Due to this I really want to figure out my issue so I can employ this great plugin!
After installation, and a slight modification to my Thesis skin’s custom.php, I am getting the Max Mega Menu and it is somehow including a second vertical menu which seems to be completely unformatted. Without the custom.php modification I cannot even get the menu to show up. I used this code to accomplish this (I would link, but it is a protected forum):
add_action( 'after_setup_theme', 'register_my_menu' ); function register_my_menu() { register_nav_menu( 'primary', 'Primary Menu' ); } add_action('hook_bottom_header','my_nav_menu'); function my_nav_menu() { wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); }
I am using the Thesis 2.1 framework with it’s default Classic Responsive skin. I have so far asked the folks at Thesis about this issue and the only help I received was to use another plugin option :(. I have gone through and removed (by commenting-out) all css that refers to any menu element, this seems to make no difference.
As you had suggested on a previous topic here I made the modifications you suggested but was still unable to remove the secondary menu.
I am not sure if this will help, but I will include the two primary .php files for the skin that I am using.
Thank you so much for your time and attention and any help is greatly appreciated!
- The topic ‘Using Max Mega Menu with Thesis 2.1 is showing 2 menus’ is closed to new replies.