Skip to content

Instantly share code, notes, and snippets.

@carbone
Created February 19, 2021 19:57
Show Gist options
  • Save carbone/700dccfbf0b98de4f3d40605b35e8a2c to your computer and use it in GitHub Desktop.
Save carbone/700dccfbf0b98de4f3d40605b35e8a2c to your computer and use it in GitHub Desktop.
<table>
{% for field in shop.metafields.custom_fields["table"] %}
{% assign metafield_key = field["key"]%}
{% assign metafield_namespace = field["namespace"]%}
{% if product.metafields[metafield_namespace][metafield_key] != null %}
<tr id={{ metafield_key }}><td><strong>{{ field["label"] }}</strong></td><td>{{ product.metafields[metafield_namespace][metafield_key] }}</td></tr>
{% endif %}
{% endfor %}
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment