How can i show product description for only first 2 products from list of products?
can you share your store Url
I can share the code
{% for block in section.blocks %}
{% assign product = all_products[block.settings.produit] %}
{% if product.variants.size > 1 %}
{% endfor %}
{{ product.title }}
{{ product.description }}
-
{% for variant in product.variants %}
- {{ variant.title }} {% endfor %}
Can You Share Full Code with Css And schema
Replace Your Code With This code.
{% assign counter = 0 %}
{% for block in section.blocks %}
{% assign product = all_products[block.settings.produit] %}
## {{ product.title }}
{% if counter < 2 %}
{{ product.description }}
{% endif %}
{% if product.variants.size > 1 %}
{% for variant in product.variants %}
- {{ variant.title }}
{% endfor %}
{% endif %}
{% if product.variants != blank %}
Browse Now
{% endif %}
{% assign counter = counter | plus: 1 %}
{% endfor %}