Kategoriye girdiğimizde ürünleri tek tek değil de 2'li olarak yan yana göstermek istiyorum. Bunu yabancı forumlarda twig dosyalarından yapılacağı hakkında bir şey okudum. Tam olarak nasıl yapabilirim?
{{ heading_title }}
{% if thumb or description %}
{% if thumb %}
{% endif %}
{% if description %}
{% endif %}
{% endif %}
{% if description %}
{{ description }}
{% endif %}
{% endif %}
{% if categories %}
{{ text_refine }}
{% if categories|length <= 5 %}
{% else %}
{% for category in categories|batch((categories|length / 4)|round(1, 'ceil')) %}
{% endfor %}
{% endfor %}
{% endif %}
{% endif %}
{% if products %}
{% for product in products %}
{% if product.price %}
{% endif %}
{% if product.rating %}
{% endif %}
{% endfor %}
{{ product.name }}
{{ product.description }}
{% if product.price %}
{% if not product.special %}
{{ product.price }}
{% else %} {{ product.special }} {{ product.price }} {% endif %}
{% if product.tax %} {{ text_tax }} {{ product.tax }} {% endif %}
{% endif %}
{% if product.rating %}
{% endif %}
{% endfor %}
{{ pagination }}
{{ results }}
{% endif %}
{% if not categories and not products %}
{{ text_no_results }}
{% endif %}
{{ content_bottom }}