| 1 |
<h3>Recommended Products</h3> |
| 2 |
<ul class="recommended_products"> |
| 3 |
{% assign recommended_products = product.metafields.my_fields.rec_products.value %} |
| 4 |
{% for product in recommended_products %} |
| 5 |
<li> |
| 6 |
<a href="{{ product.url }}"> |
| 7 |
{{ product.featured_image | image_url: width: 400 | image_tag: loading: 'lazy' }} |
| 8 |
{{product.title}} |
| 9 |
</a> |
| 10 |
</li> |
| 11 |
{% endfor %} |
| 12 |
</ul> |
| 13 |
|
| 14 |
{%- comment -%} From https://www.codeshopify.com/blog_posts/related-products-with-product_list-sections-metafields {%- endcomment -%} |
| 15 |
|