I don't think this is possible with the way it's coded but on index.php I have the following code, because there is a type="row", I can't add type="group" in the same bit of code as couchcms does not like it. I thought it would be clearer for the user who edits the site to see the sections in groups, for example slideshow section, about us section and so on but I can't work out a way to do it, does anyone know a way around it or a way to do it if possible?

Code: Select all
<cms:editable name='homepage_design_layout' type='row' not_active=homepage_layout order='1'>
<cms:repeatable name='slides' label='Slides' stacked_layout='1'>
<cms:editable name='slide_image' label='Slideshow Image' type='image' />
<cms:editable type='text' name='slide_heading' label='Slide Heading' />
<cms:editable type='text' name='slide_text' label='Slide Text' />
<cms:editable type='text' name='button_one_text' label='button one text' />
<cms:editable type='text' name='button_one_link' label='button one link' />
<cms:editable type='text' name='button_two_text' label='button two text' />
<cms:editable type='text' name='button_two_link' label='button two link' />
</cms:repeatable>
   
<cms:editable type='text' name='about_heading' label='About Heading' />
<cms:editable name='about_image' label='About Us Image' type='image' />
<cms:editable type='richtext' toolbar='full' name='about_text' label='About Text' />


I tried the following way earlier as was unsure at the time if could be done but with that code I get ERROR: Type 'row' editable cannot have 'group' nested within it.

Code: Select all
<cms:editable name='homepage_design_layout' type='row' not_active=homepage_layout order='1'>

<cms:editable name='slides_group' label='Slideshow Section' type='group' collapsed='1' order='1' />
<cms:repeatable name='slides' label='Slides' stacked_layout='1' group="slides_group">
</cms:editable>


Thank you in advance