Skip to content

Instantly share code, notes, and snippets.

@Rakeshbagri
Last active August 29, 2017 06:42
Show Gist options
  • Save Rakeshbagri/b1c14069fe6fa9ccd03daced5bbc60b9 to your computer and use it in GitHub Desktop.
Save Rakeshbagri/b1c14069fe6fa9ccd03daced5bbc60b9 to your computer and use it in GitHub Desktop.
how to call product list in sub menu
{% for product in collections[child_list_handle].products limit:2 %}
<div>
<a href="{{ url }}">
<div style="background-image: url('{{ product.featured_image | product_img_url: 'large' }}'); width:200px; height:200px; "> </div>
{{ product.title }}
{{ product.price | money_with_currency }}
</a>
</div>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment