related products shopify code code example
Example: related products shopify code
{% assign heading = 'You may also like' %}
{% assign limit = 4 %}
{% if recommendations.performed %}
{% if recommendations.products_count > 0 %}
{{ heading }}
{% for product in recommendations.products %}
-
{% include 'product-card-grid', max_height: 250 %}
{% endfor %}
{% endif %}
{% else %}
{% endif %}