How can two metafields have the same value??
I print two metafields that are a pae template that is empty.
When I print both one being used and the other not they come out as exactly the same.
How can this be?
{{ product.metafields.custom.size_chart }}
{{ product.metafields.custom.made_to_order }}
{%- when 'popup' -%}
{{ product.metafields.custom.size_chart }}
{{ product.metafields.custom.made_to_order }}
{% comment %} MGO: Show Chart Table if not empty {% endcomment %}
{%- if product.metafields.custom.size_chart != blank -%}
{{- block.settings.text -}}
{% comment %} MGO: Show Non-Refundable if not empty {% endcomment %}
{%- elsif product.metafields.custom.made_to_order != blank -%}
{{- block.settings.text -}}
{%- endif -%}
