hello, this theme is really nice.
I also had same issue.
and I found how to resolve it.
situations is…
top menu is empty.
nav menu has 3 items.
issues.
Mobile nav menu didn’t show up.
Easiest way to solve this, add one more item to the top menu.
I faced this problem when top menu is empty.
looks like /wp-fanzone/js/navigation.js was causing this.
/wp-fanzone/js/navigation.js, line 30-37
// Hide menu toggle button if menu is empty and return early.
if ( 'undefined' === typeof menu_top ) {
button_top.style.display = 'none';
return; // <-- this will cause the problem when top menu is empty
}
if ( 'undefined' === typeof menu ) {
button.style.display = 'none';
return; // <-- and this too?
}
thanks.