Empty Menu Error
-
I just installed this plugin prior to creating a menu, threw up all sorts of errors. Here was the fix, at line 323 in wcmenucart-settings.php:
/** * Get menu array. * * @return array menu slug => menu name */ public function get_menu_array() { $menus = get_terms( 'nav_menu', array( 'hide_empty' => false ) ); $menu_list = array(); // ----- Added this line foreach ( $menus as $menu ) { $menu_list[$menu->slug] = $menu->name; } return $menu_list; }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Empty Menu Error’ is closed to new replies.