Created
March 22, 2015 02:10
-
-
Save datamafia/737d350a53f16dd0c8a8 to your computer and use it in GitHub Desktop.
Shopify Snippets and similar items I don't feel like looking up again.
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
<!-- List tags for product --> | |
{% if product.tags.size > 0 %} | |
<div><span class="mellow" >tags:</span> | |
{% for tag in product.tags %} | |
<a href="/collections/all/{{ tag | replace: ' ','-' }}">{{ tag }}</a> | |
{% endfor %} | |
</div> | |
{% endif %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment