Skip to content

Instantly share code, notes, and snippets.

@hmowais
Created April 25, 2024 16:11
Show Gist options
  • Save hmowais/5c8bdd0fb68323c05484865f58498e4c to your computer and use it in GitHub Desktop.
Save hmowais/5c8bdd0fb68323c05484865f58498e4c to your computer and use it in GitHub Desktop.
Get Menu list in shopify code
<div class="sidebar-menu">
<h2>Categories</h2>
<ul class="footer-menu-list">
{% for link in linklists.collection-menu.links %}
<li class="custom-menu-item {{ link.title }}"><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endfor %}
<li class="vieW_more"><a href="/collections/all">View More</a></li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment