Get Metafields Product

Solved

Get Metafields Product

Rich152
Shopify Partner
32 0 12

Hello everyone, I’ve declared a product metafield as a list of values; how can I retrieve those values using code? Thank you!!

 

Screen Shot 2025-05-20 at 8.33.37 AM.png

Screen Shot 2025-05-20 at 8.33.58 AM.png

Accepted Solution (1)

wo
Shopify Partner
219 45 47

This is an accepted solution.

{% assign related_products = product.metafields.custom.custom_product_related %}
{% for related_product in related_products.value %}
<div class="card">
<h3>{{ related_product.title }}</h3>
</div>
{% endfor %}

I didn't make sure the code is correct. But it is like this.

View solution in original post

Replies 2 (2)

wo
Shopify Partner
219 45 47

This is an accepted solution.

{% assign related_products = product.metafields.custom.custom_product_related %}
{% for related_product in related_products.value %}
<div class="card">
<h3>{{ related_product.title }}</h3>
</div>
{% endfor %}

I didn't make sure the code is correct. But it is like this.

Rich152
Shopify Partner
32 0 12

Thank you so much !!