- This topic has 13 replies, 3 voices, and was last updated 7 years, 7 months ago by
Tom.
-
AuthorPosts
-
August 10, 2014 at 6:05 am #10676
Mike Buzzell
Hi Tom, hope all is well. First I really like the updates you’ve made to the template recently. Was hoping you could help on this one. I was using Uber Mega Menu 2.x with the template and all was good and working fine. Then I updated my test site to the new 3.0 version and now nothing is working. Meaning the menu shows up in the WP-header GP hook section but the menu is as static list. There is no Uber Mega Menu structure or functionality. This could be an Uber Mega Menu upgrade issue but before I pinged them I want to check with you regarding their spec here is the link: http://sevenspark.com/docs/ubermenu-3/integration/automatic/requirements . If you could take a quick check and let me know if the template meets the spec I can ask them for as stance as well. Unfortunately I can not provide a link because it is my internal test site that I have upgrade first.
Thanks,
MikeAugust 10, 2014 at 7:56 am #10712Tom
Lead DeveloperLead DeveloperHi Mike,
GeneratePress definitely follows all of those rules. WP.org is pretty strict about the themes they allow in the repository.
Give the developers a shout and get back to me with what they say – if there’s something I have to do to make it work I definitely will.
Thanks,
TomAugust 12, 2014 at 5:47 am #11690Mike Buzzell
Hi Tom, I have contacted the Uber Mega Menu support team ( http://sevenspark.com ) to ask for their help. hope to hear from them later today or tomorrow. I really like and want to use your template and their menu plugin to build out my new site. Is there anyway you could test the plugin on your end just to see if you experience the problem and can help resolve it. My setup right now is pretty basic with MAMP Pro on a Mac as my server configuration, the GeneratePress Template and add ons and the basic Uber Mega Menu ver 3. As I mentioned in my earlier post version 2 worked fine. I am willing to provide you with the ver 3 plugin and my license to help trouble shoot this. Not trying to waste anyones time but would really appreciate the help. Thanks again for you great support and help, Mike
August 12, 2014 at 9:50 pm #12065Tom
Lead DeveloperLead DeveloperHi Mike,
Sure I can give it a go when I get a second – send me details at support@generatepress.com.
Tom
August 13, 2014 at 5:22 pm #12656Tom
Lead DeveloperLead DeveloperFor others wanting to use Ubermenu, you need to add this to your child theme’s functions.php file: https://gist.github.com/generatepress/0ba0439ced685a1afb81
Tom
August 22, 2014 at 9:57 am #17264Mike Buzzell
Hi Tom,
Here is the code that works in the child version ( functions.php ) of the template for Uber Mega Menu Plugin Version 3. Thanks, Mike
<?php /** * Generate child theme functions and definitions * * @package Generate */ add_action( 'wp_head' , 'um_remove_generatepress_menu' ); function um_remove_generatepress_menu(){ remove_filter( 'wp_nav_menu_args', 'generate_wp_nav_menu_args' ); remove_action( 'generate_before_header', 'generate_add_navigation_before_header', 5 ); } add_action( 'generate_before_header' , 'generate_ubermenu' , 5 ); function generate_ubermenu(){ ?> <div class="grid-container"> <?php ubermenu( 'main' , array( 'theme_location' => 'primary' ) ); ?> </div> <?php }
August 22, 2014 at 10:03 am #17278Tom
Lead DeveloperLead DeveloperAwesome – thanks!
August 30, 2014 at 1:37 pm #21836Tom
Lead DeveloperLead DeveloperHi Mike,
Just letting you know that the next version of GP integrates menus more gracefully, and should be fully compatible with this plugin without any custom functions.
Thanks!
August 30, 2014 at 6:33 pm #22026Mike Buzzell
Hi Tom,
Thanks for the update. Is it version 1.1.3 or the next version?
Thanks,
Mike
August 30, 2014 at 6:35 pm #22027Tom
Lead DeveloperLead DeveloperIt’ll be in 1.1.4.
Thanks!
May 9, 2016 at 6:56 am #192933Anonymous
Hi
I just want to say, that i have tested uber menu with GP and it works fine together. Only issue is that sub menus are not being expanded automatically. I had to hover mouse to open them. Once i applied your custome code it has started to work flawlesly.
May 9, 2016 at 10:18 am #192987Tom
Lead DeveloperLead DeveloperAwesome, glad it’s working 🙂
May 9, 2016 at 11:11 pm #193129Anonymous
Well, i wanted to pinpoint that although it works almost perfectly, it is still not 100% adaptive.
Earlier you have posted:
Just letting you know that the next version of GP integrates menus more gracefully, and should be fully compatible with this plugin without any custom functions.I just wanted to pinpoint that still some manual CSS sjould be done. If you could fix that, would be excellent.
May 10, 2016 at 12:10 am #193135Tom
Lead DeveloperLead DeveloperAh, it looks like the code above is still necessary to make it work 100% – sorry about that.
I’ll see what I can do about adding it to core.
-
AuthorPosts
- You must be logged in to reply to this topic.