Hi again,
Longtime to continue my development web with grav, now i'm handle again, but i have problem in 3 nested menu, you can try at https://web.persahabatan.co.id/id/beranda when i click FASILITAS & PELAYANAN -> Layanan Unggulan -> Others Menu
but Others menu not show on the right menu, this is my code, im using macros
{% macro nav_loop(page) %}
{% import _self as macros %}
{% for p in page.children.visible %}
{% set active_page = (p.active or p.activeChild) ? 'active' : '' %}
{% if p.children.visible.count > 0 %}
<li class="dropdown {{ active_page }}">
<a href="{{ p.url }}" class="dropdown-toggle" data-toggle="dropdown">{{ p.menu }} <span><i class="fa fa-angle-down"></i></span></a>
<ul class="dropdown-menu multi-level">
{{ macros.nav_loop(p) }}
</ul>
</li>
{% else %}
<li class="{{ active_page }}">
<a href="{{ p.url }}">{{ p.menu }}</a>
</li>
{% endif %}
{% endfor %}
{% endmacro %}
when i'm inspect element, <li class="dropdown">Others Menu</li> it's must <li class="dropdown-submenu">Others Menu</li>
can someone give me trick to add submenu in <li> class proprty, im try to dump(macros.nav_loop(p)) but i'm confused, it's show null
please someone, direction me. thanks.

