{% set fils = module.fil %}
{% for fil in fils %}
{{ fil.filter_title }}
{% for accordion in fil.accordion %}
..
{# accordion code here #}
..
{% endfor %}
{% endfor %}
{% set fils = module.fil %}
{% for fil in fils %}
{{ fil.filter_title }}
{% for accordion in fil.accordion %}
..
{# accordion code here #}
..
{% endfor %}
{% endfor %}
HubSpot’s AI-powered customer agent resolves up to 50% of customer queries instantly, with some customers reaching up to 90% resolution rates. Learn More.
Actually, my goal is to have a group of filters, which each filter has a group of accordions inside. In this case, Filter Group has a loop that works fine and an accordion group inside the filter group has also loop and shows nothing in output.
Please tell me if it's possible at all to have a repeat group inside another repeated group.