Advanced Mega Menu Manager for Magento 2

Add the menu to the frontend

In order to add a menu to the frontend view you can add this code to your layout xml file or in the layout update xml fields:

<block class="Blackbird\MenuManager\Block\Menu">
    <arguments>
        <argument name="menu" xsi:type="string">menu_identifier</argument>
    </arguments>
</block>

You can also add another parameter if you don't want to load the associated menu's Javascript (loaded by default or if the argument is set to true) :

<argument name="jquery_loading" xsi:type="boolean">false</argument>