Ionic Side Menu being displayed even if it is not mentioned

side menu is being displayed even it is not mentioned in
page

@vaa
You probably need to disable it by default at startup from app.component.ts (if angular project) :wink:

this.menuCtrl.enable(false); // when unauthenticated pages

Thank you @1antares1 it works. I also have another issue with ionic side-menu i.e., I have created multiple side menu with different menuId’s, but I am unable to access multiple menu’s. only single menu is being displayed.

1 Like

Dear @vaa There is a way to get the ID since you get the instance of the first Menu.
With the Menu, when you go to execute any function (e.g. close()); you pass that specific id.

I hope this description is useful for you.