{% if product.featured_image != blank %}
{% endif %}
{% for machine in Machines.userdata.machines %}
{% if machine.parts contains product.title %}
Compatible with
{{machine.make}} {{machine.model}}
{% endif %}
{% endfor %}
$ {{product.price | times: .01 | round: 2}}
Dimensions
{% for tag in product.tags %} {% if tag contains ':' %} {% if tag contains 'length' or tag contains 'width' or tag contains 'thickness' or tag contains 'radius' or tag contains 'diameter' %} {% unless tag contains 'N/A' %}
{{tag | split: ':' | first | replace: '_', ' '}}:
{{tag | split: ':' | last}}
{% endunless %}
{% endif %}
{% endif %}
{% endfor %}
Materials
{% for tag in product.tags %} {% if tag contains ':' and tag contains 'material' %} {% unless tag contains 'N/A' %}
{{tag | split: ':' | first | replace: '_', ' '}}:
{{tag | split: ':' | last}}
{% endunless %}
{% endif %}
{% endfor %}