Hi,
This is my first post and just started using couch and so far seems like an amazing product! After going through the docs and searching, I haven't been able to find out how to do this or if it's possible.
Basically looking to be able to inline edit an image on a repeatable block. It seems to work for inline editing text, but not images.
My Repeatable:
and then in my markup:
Editing the text works, but if I try to edit the image, I get "Field not found: about_block_image" error.
Thanks!
This is my first post and just started using couch and so far seems like an amazing product! After going through the docs and searching, I haven't been able to find out how to do this or if it's possible.
Basically looking to be able to inline edit an image on a repeatable block. It seems to work for inline editing text, but not images.
My Repeatable:
- Code: Select all
<cms:repeatable name="about_block" label="Abous Us Blocks" group="about_section" order="3"> <cms:editable type="image" name="about_block_image" label="Block Image" desc="" width="175" show_preview="1" preview_width="100" group="about_section" order="1" /> <cms:editable type="text" name="about_block_headline" label="Block Headline" desc="" group="about_section" order="2">Headline</cms:editable> <cms:editable type="text" name="about_block_text" label="Block Text" desc="" group="about_section" order="3">some text</cms:editable> </cms:repeatable>
and then in my markup:
- Code: Select all
<cms:show_repeatable 'about_block'> <div class="col-sm-4 p-b-md"> <img src="<cms:show about_block_image />"/> <cms:popup_edit "about_block_image" /> <h4 <cms:inline_edit 'about_block_headline' />><cms:show about_block_headline /></h4> <p <cms:inline_edit 'about_block_text' />><cms:show about_block_text /></p> </div> </cms:show_repeatable>
Editing the text works, but if I try to edit the image, I get "Field not found: about_block_image" error.
Thanks!