Created
September 28, 2022 18:01
-
-
Save cameroncowden/3062203950f30b542a2893a6c7647512 to your computer and use it in GitHub Desktop.
Show products from a specific collection in Shopify
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
<!-- the collection handle we are pulling from is 'new'---> | |
{% assign collection = collections['new'] %} | |
{% for product in collection.products | limit: 4 %} | |
<!-- the 'product-block' is specific to your theme, it is html for a grid item of a product, could be called product-grid-item, grid-product, etc ---> | |
{% render 'product-block', product: product %} | |
<!-- product ---> | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment