hello I want to show the product recommendations
https://help.shopify.com/en/manual/online-store/themes/os/customize/show-recommendations I create this solution on motion and debut theme but it was not working
I used this code but still return the false.
{{recommendations.performed }}
{% if recommendations.performed %}
{% if recommendations.products_count > 0 %}
{% for product in recommendations.products %}
{{ product.title | link_to: product.url }}
{% endfor %}
{% endif %}
{% else %}
Placeholder animation
{% endif %}