Hi,
There it’s already to 3 levels
Home
-Home
–Home
WE don’t’ have a quick solution for 4 level depth ,you can increase the menu depth but is not sufficient it should be made a full CSS for level 4 menu, so you will have to do it yourself , the responsible file for increasing depth is /wp-content/themes/kleo/page-parts/general-header-section.php
$primary_menu = wp_nav_menu( array(
‘theme_location’ => ‘primary’,
‘depth’ => 3,
‘container’ => ‘div’,
‘container_class’ => ‘collapse navbar-collapse nav-collapse’,
‘menu_class’ => ‘nav navbar-nav’,
//’fallback_cb’ => ‘kleo_walker_nav_menu::fallback’,
‘fallback_cb’ => ”,
‘walker’ => new kleo_walker_nav_menu(),
‘echo’ => false
)
);
At line 33 or around look for depth and change from 3 to 4, copy this file to child to have it after theme update also you will write your own css for the level 4 or hire a developer.
Cheers
R.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution