You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for 3 level menu removed
Used standard navbar markup with divs for 2 level
Problem:
// Main Link which has a sub menu.
$NAVIGATION_TEMPLATE['main']['item_submenu'] = '
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDropdown{LINK_IDENTIFIER}" role="button" data-toggle="dropdown" data-target="#" href="{LINK_URL}" title="{LINK_DESCRIPTION}">
{LINK_ICON}{LINK_NAME}
</a>
{LINK_SUB}
</li>
';
// Main Link which has a sub menu - active state.
$NAVIGATION_TEMPLATE['main']['item_submenu_active'] = '
<li class="nav-item dropdown active>
<a class="nav-link dropdown-toggle" id="navbarDropdown{LINK_PARENT}" role="button" data-toggle="dropdown" data-target="#" href="{LINK_URL}" title="{LINK_DESCRIPTION}">
{LINK_ICON}{LINK_NAME}
</a>
{LINK_SUB}
</li>
';
{LINK_IDENTIFIER} and {LINK_PARENT} are empty
The text was updated successfully, but these errors were encountered:
Support for 3 level menu removed
Used standard navbar markup with divs for 2 level
Problem:
{LINK_IDENTIFIER} and {LINK_PARENT} are empty
The text was updated successfully, but these errors were encountered: