Hi there,
I’m building a website for one of my clients with the Enfold theme. Site has lots of menu’s & sub-menu’s ( 68 total menu-items at the moment ) and it seems that everytime I add a new item ( the 69th item ) the menu breaks and refuses to add the new link and show on the frontend..
I’m not using the mega-menu option but just the normal menu with sub-sub menu’s..
Really curious if there is a quick fix ( launch of website in 1 day.. :( )
Regards,
Marcel
Fixed my own problem! :)
Seems like this is a WordPress/php problem rather then specific to the Enfold theme.
The problem lies in the max_vars_input option in the server configuration.
Default is 1000 and when there are many menu-options this option needs to be higher.
You can change it in php.ini when you have access to it or add it to your .htaccess file.
Add something like max_input_vars = 3000; to your php.ini file or
php_value max_input_vars 3000 to your .htaccess file.