{{currTest}} returns the value outside of the for but then {{ prod.metafields.prod_fields.test.value }} returns nothing. Hopefully somebody here can see what I’m doing wrong. Thanks
{% liquid
assign currTest = product.metafields.prod_fields.test.value
%}
{% paginate collections.all.products by 1000 %}
{% for prod in collections.all.products %}
{{ prod.metafields.prod_fields.test.value }}
{% endfor %}
{% endpaginate %}