Hello,
I am working on a extranet that uses a private content plugin. It appears that some functionality that I need is not available due to the Mega Menu checkbox being included. Here is a link to a screenshot as I am working locally:
https://drive.google.com/file/d/0BwCg0nAp9i1xeWdXeXhjVVN2X28/edit?usp=sharing
How can I disable the megamenu functionality and remove it from the Edit Menus page? I do not need it for the project that I am working on.
Thanks.
Doug
Hi Doug!
Have you tried to going to the top right hand corner of your menus manager and clicking on the Screen Options tab and then making sure your plugins additional field is checked to be visible?
Cheers!
Devin
I looked and there is no field available to check that relates to the plugin.
Doug
Hi!
As far as I know you can remove the mega menu feature by deleting following code in functions.php
require_once( 'includes/helper-responsive-megamenu.php' ); // holds the walker for the responsive mega menu
Cheers!
Peter
I tried that and it didn’t work. I am working with a child theme, but that particular file is not copied in the child theme folder. here is a link to a screen shot:
https://drive.google.com/file/d/0BwCg0nAp9i1xZVJ0Q24xUFZ4V28/edit?usp=sharing
You would need to remove it from the parent because the child isn’t the one including the file.
I understand. Deleting that line doesn’t remove the mega menu functionality. I also tried it on a clean install of wordpress, without a child theme and removing that line of code doesn’t do anything. The Mega Menu is still there. What other suggestions do you have?
Doug
You can remove the mega menu support from the main functions.php in that case:
/*
* add support for responsive mega menus
*/
add_theme_support('avia_mega_menu');