arky
(Arky)
January 10, 2022, 8:45am
1
Does volto support simple drop down navigation in volto without using any addons?
Created a nested folders 'First Level' and 'Second Level'. Also changed the default navDepth in settings. Still volto only renders top level navigation items only.
...config.settings,
navDepth: 3,
}
Plone 6 Navigation
Volto 14 Navigation
1 Like
@arky What navDepth do you have in controlpanel/navigation
?
arky
(Arky)
January 10, 2022, 3:06pm
3
I have changed the 'Navigation Depth' setting navigation control panel from default to 5. But it doesn't seems to have any effect.
express:router dispatching GET /++api++/@navigation?expand.navigation.depth=3 +899ms
express:router query : /++api++/@navigation?expand.navigation.depth=3 +0ms
express:router expressInit : /++api++/@navigation?expand.navigation.depth=3 +0ms
express:router serveStatic : /++api++/@navigation?expand.navigation.depth=3 +1ms
send stat "/home/arky/Code/Plone/Plone-6/frontend/public/++api++/@navigation" +0ms
express:router router : /++api++/@navigation?expand.navigation.depth=3 +1ms
express:router dispatching GET /++api++/@navigation?expand.navigation.depth=3 +0ms
express:router dispatching GET /++api++/@breadcrumbs +0ms
express:router query : /++api++/@breadcrumbs +0ms
express:router expressInit : /++api++/@breadcrumbs +0ms
express:router serveStatic : /++api++/@breadcrumbs +0ms
send stat "/home/arky/Code/Plone/Plone-6/frontend/public/++api++/@breadcrumbs" +1ms
express:router dispatching GET /++api++/@actions +0ms
express:router query : /++api++/@actions +0ms
express:router expressInit : /++api++/@actions +0ms
express:router serveStatic : /++api++/@actions +0ms
send stat "/home/arky/Code/Plone/Plone-6/frontend/public/++api++/@actions" +0ms
express:router router : /++api++/@breadcrumbs +1ms
express:router dispatching GET /++api++/@breadcrumbs +0ms
express:router dispatching GET /++api++/ +0ms
express:router query : /++api++/ +0ms
express:router expressInit : /++api++/ +0ms
express:router serveStatic : /++api++/ +0ms
send stat "/home/arky/Code/Plone/Plone-6/frontend/public/++api++/index.html" +0ms
express:router router : /++api++/@actions +1ms
express:router dispatching GET /++api++/@actions +0ms
express:router router : /++api++/ +1ms
express:router dispatching GET /++api++/ +0ms
express:router dispatching GET /++api++/@actions +11ms
express:router query : /++api++/@actions +0ms
express:router expressInit : /++api++/@actions +0ms
express:router serveStatic : /++api++/@actions +0ms
send stat "/home/arky/Code/Plone/Plone-6/frontend/public/++api++/@actions" +0ms
express:router router : /++api++/@actions +1ms
express:router dispatching GET /++api++/@actions +0ms
express:router dispatching GET /++api++/@types +1ms
express:router query : /++api++/@types +0ms
express:router expressInit : /++api++/@types +0ms
express:router serveStatic : /++api++/@types +0ms
send stat "/home/arky/Code/Plone/Plone-6/frontend/public/++api++/@types" +0ms
express:router router : /++api++/@types +1ms
express:router dispatching GET /++api++/@types +0ms
arky
(Arky)
January 10, 2022, 3:18pm
4
@nileshgulia1 Looking at react devtools, I see that navItems props are correctly populated:
...
{"title":"First Level","url":"/first-level","items":[{"title":"Second Level","url":"/first-level/second-level","items":[]}]}
As far as I know, there's no dropdown menus with Volto's default nav menu implementation.
I can point you to this customization, which implements it for WISE Freshwater , see volto-freshwater/Navigation.jsx at master · eea/volto-freshwater · GitHub
arky
(Arky)
January 11, 2022, 6:59am
6
Thank you @tiberiuichim for pointers.
I believe this features is basic functionality that should be shipped with volto. Such functionality is present in Classic Plone.
Filled a bug request to in volto issue tracker:
opened 06:57AM - 11 Jan 22 UTC
04 type: enhancement
**Is your feature request related to a problem? Please describe.**
The volto de… fault navigation only shows the top level navigation items. If secondary navigation elements are available (Example: News items are good example https://localhost:3000/news/breaking-news) they are not shown as dropdown menu item or subitem in mobile navigation.
**Describe the solution you'd like**

Implementation of such drop down is available here and in volto-dropdownmenu addon.
https://water.europa.eu/freshwater
https://github.com/eea/volto-freshwater/blob/master/src/customizations/components/theme/Navigation/Navigation.jsx
**Describe alternatives you've considered**
You can override navigation as shown in the example solution or use available addons. But this feature is really basic (classic plone feature) that it needs to be shipped with volto.
**Additional context**
Full discussion of this feature in seen this community post.
https://community.plone.org/t/volto-6-simple-dropdown-navigation/14685/4
erral
(Mikel Larreategi)
January 11, 2022, 9:06am
7
We have some code that overrides Volto's main navigation to allow dropdown navigation with the default Plone settings.
Here is the relevant code:
Is the CSS generic? Could you add it to the ticket that @arky opened, together with your solution?
erral
(Mikel Larreategi)
January 11, 2022, 9:48am
9
of course, the CSS has just a couple of lines, I will add them to the ticket.
1 Like
mekell
(me-kell)
December 22, 2022, 11:50am
10
What are the steps to have a navigation dropdownmenu running?
AFAICS https://plone.org/
shows navigation dropdownmenu:
arky
(Arky)
December 22, 2022, 1:32pm
12
You can find instructions in the addon repo.