I have a MetaObject, which is connected to a MetaField. Inside it there is a multi lines of single line text.
so it’s an array.. I want to run in a loop and display it.
{{ product.metafields.custom.product_features.value.product_feature }} ===>> shows me this: [“x”,“r”,“z”,“y”]. (It works!)
But I want to show them one by one…
I tried the following code:
{% for feature in product.metafields.custom.product_features.value.product_feature %}
{{ feature }}
{% endfor %}
But it doesn’t work, pls help me ![]()