Created
April 25, 2024 16:11
-
-
Save hmowais/5c8bdd0fb68323c05484865f58498e4c to your computer and use it in GitHub Desktop.
Get Menu list in shopify code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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