KK wrote: It appears you are having difficulty in setting the 'group' properly with the editable regions.
I think you'll find the following alternative syntax of doing the same easier -
- Code: Select all
<cms:editable name='artwork_details' label='Artwork Details' type='group' order='10'>
<cms:editable name='main_image' desc='Upload artwork image here' type='image' order='1' />
<cms:editable name='artwork_title' desc='Input artwork title here' type='text' order='3' />
<cms:editable name='artist_name' type='text' order='4' />
<cms:repeatable name='thumbnail_images' order='2' >
<cms:editable type='image' name='thumbnail_images' label='Thumbnail Images' />
</cms:repeatable>
</cms:editable>
Please notice above how we are nesting all child editable regions within a type 'group' and that now we don't have to explicitly set the 'group' params for those nested children.
Please try it.
Hope it helps.
<cms:editable name='main_details' label='Uploads' desc='Your main uploads' type='group' order='-2' />
<cms:editable name='other_details' label='Uploads' desc='your other details' type='group' order='11' />
<cms:editable
name='main_image_thumb'
label='Main Image Preview'
desc='Thumbnail of main image'
width='100'
show_preview='1'
assoc_field='main_image'
type='thumbnail'
order='1'
group='main_details'
/>
<cms:editable name='main_image' desc='Upload artwork image here' type='image' order='2' group='main_details' />
<cms:repeatable name='thumbnail_images' group='main_details' order='3' >
<cms:editable type='image' name='thumbnail_images' label='Thumbnail Images' group='main_details' order='4' />
</cms:repeatable>
<cms:editable name='artwork_title' desc='Input artwork title here' type='text' order='5' group='main_details' />
<cms:editable name='artist_name' type='text' order='6' group='main_details' />
<cms:editable name='art_year' type='text' order='7' group='main_details' />
<cms:editable name='art_dimensions' type='text' order='8' group='main_details' desc='Input artwork dimensions here' />
<cms:editable name='art_medium' type='text' order='9' group='main_details' desc='Input artwork medium here' />
<cms:editable name='artwork_description' type='richtext' group='other_details' desc='Input artwork description here (Optional)' order='12' />