We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 387dc90 commit 247e834Copy full SHA for 247e834
docs/templating/twig_function_reference/product_twig_functions.md
@@ -129,4 +129,15 @@ The `ibexa_is_pim_local` is a helper Twig function that enables changing the beh
129
<button type="button">Modify product data</button>
130
</div>
131
{% endif %}
132
+```
133
+
134
+### `ibexa_product_catalog_group_attributes`
135
136
+The `ibexa_product_catalog_group_attributes` filter groups product attributes (configured in `ibexa_product_catalog_group_attributes`).
137
138
+#### Example
139
140
+``` html+twig
141
+{% for group, attributes in product.attributes | ibexa_product_catalog_group_attributes %}
142
+{{ group.getIdentifier() }}:{{ attributes|map(attribute => attribute.getAttributeDefinition().getIdentifier())|join(' ') }}
143
```
0 commit comments