Is it possible to have a two menus depending on the web page?

I am working in Wix Editor.
Is it possible to have 2 different menus and make them appear on different sub pages

I guess the only option is to take the menu out of the header and put in on every page.

Is there any other way of doing this?

This can be done, but not without custom code.

Here’s how you would be able to do that using Velo:

Initially you will have both the menus added to the header.

Then in code, you will have a list of all the page URLs that you want the second menu to show up on. The code will then check the URL each time a user visits any page on the site, and try to find a matching URL in the list. If found, the code would hide the first menu, and display the second one, else vice versa.

Another way of doing this, which would not require two different menus added to the header, is to have one single menu and then change it’s options based on the URL instead of having another one. Ofcourse this is only feasible if you want the design and layout of both your menus to be identical.

1 Like