nestedSortable icon indicating copy to clipboard operation
nestedSortable copied to clipboard

How 3rd level sub menu in menu.liquid

Open SAISUDHEERREDDY opened this issue 5 years ago • 0 comments

how can i dow in this dropdown menu

<li class="nav-item {% if Model.HasItems %}dropdown{% endif %}">
    {% shape_clear_alternates Model %}
    {% shape_type Model "MenuItemLink" %}
    {{ Model | shape_render }}
    {% if Model.HasItems %}
        <ul class="dropdown-menu">
            {% for item in Model.Items %}
                {{ item | shape_render }}
            {% endfor %}
        </ul>
    {% endif %}
</li>

This is my code

image

SAISUDHEERREDDY avatar Jul 27 '20 09:07 SAISUDHEERREDDY