Undefined array key

Hello,

I’m getting a " Warning : Undefined array key “menu” in /wp-content/themes/pro/cornerstone/includes/elements/definitions/nav-dropdown.php on line 93 when using the Nav-Dropdown element.

I’ve tried replacing nav-dropdown.php with a fresh version (taken from the PRO.zip file. But it still doesn’t work.

Any suggestions?

Hi Oriol,

Thanks for reaching out.
I have checked the mentioned file but didn’t find the issue you described here. I would suggest you make the WP_DEBUG value false at the wp-config.php file to suppress the warning message and provide the login credentials for your site in a secure note to examine it further, including:

– WordPress Site URL & Login URL
– WordPress Admin username/password
– Exact Page/Header URL where you are having this issue

To create a secure note, click the key icon underneath any of your posts.

Thanks

Hi Oriol,

This is just a PHP warning and doesn’t affect any functionality of your website. To remove the warnings, I suggest that you add this code in your wp-config.php file.

ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);

Reference:

Hope that helps.

Thank you, that fixed it.

Hi Oriol,

You’re welcome! If you have any other concerns or clarifications regarding our theme features, feel free to open up a new thread.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.