UTF-16 | UTF-8 | DESCRIPTION | SAMPLE |
---|---|---|---|
\U0022 | \x22 | QUOTATION MARK | " |
\U0027 | \x27 | APOSTROPHE | ' |
\U201C | \xe2\x80\x9c | LEFT DOUBLE QUOTE | “ |
\U201D | \xe2\x80\x9d | RIGHT DOUBLE QUOTE | ” |
\U2018 | \xe2\x80\x98 | LEFT SINGLE QUOTE | ‘ |
\U2019 | \xe2\x80\x99 | RIGHT SINGLE QUOTE | ’ |
\u002d | \x2d | A HYPHEN | - |
\u2013 | \xe2\x80\x93 | AN EN DASH | – |
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
Array( | |
[key] => b2518060b99e87b333629133e91ee828 | |
[product_id] => 57317 | |
[variation_id] => 0 | |
[variation] => Array | |
( | |
) | |
[quantity] => 1 | |
[data_hash] => b5c1d5ca8bae6d4896cf1807cdf763f0 | |
[line_tax_data] => Array |
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
Demo: https://stone-digital-test.myshopify.com/pages/tag-loop-example | |
<!-- Step 1) create comprehensive list of all tags ie. tags_list --> | |
{% capture tags_list %} | |
{% for product in collections.all-products.products %} | |
{% for tag in product.tags %} | |
{{ tag | strip | strip_newlines }}{% if forloop.last == true %}{% else %},{% endif %} | |
{% endfor %}{% if forloop.last == true %}{% else %},{% endif %} | |
{% endfor %} | |
{% endcapture %} |
NewerOlder