Created
June 13, 2017 19:49
This liquid code will list all of the products in a store with links to the product admin page and show all product photos under each product
This file contains hidden or 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
<h2>All Product Images</h2> | |
{% for product in collections['all'].products %} | |
<p><a href="/admin/products/{{product.id}}" target="_blank">{{product.title}}</a></p> | |
{% for image in product.images %} | |
<p><img src="{{ image.src | product_img_url: "large" }}"></p> | |
{% endfor %} | |
{% endfor %} |
Has a limit of 50, how to bypass that?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks man