by
KK » Thu Jun 05, 2025 12:27 pm
Please try modifying your code to this -
- Code: Select all
<cms:editable type='group' name='group_why_choose_us' label='Why Choose Us' collapsed='1' order='5'>
<cms:repeatable name="why_choose_us" label=" " >
<cms:editable group='why_choose_us' name="why_choose_us_title" label="Title" type="text"/>
<cms:editable group='why_choose_us' name="why_choose_us_content" label="Content" type="richtext"/>
<cms:editable group='why_choose_us' name="why_choose_us_image" label="Icon 36 x 37px" type="image" show_preview='1' width='36' height='37'/>
</cms:repeatable>
</cms:editable>
As you can see, the 'group' is a separate type of region that serves to envelope all regions that are defined within it - in our case we are defining only the repeatable region as its child.
It shows up in collapsed state as this -

- Screenshot from 2025-06-05 12-25-10.png (4.03 KiB) Viewed 2187 times
And as follows when expanded -

- Screenshot from 2025-06-05 12-25-31.png (32.92 KiB) Viewed 2187 times
Hope this helps.