Topic: Prevent a DIV in a Repeatable region from being editable

Hi,

I would like to make a div within a repeatable region un-editable. Basically, I want the client to be able to duplicate the whole region, but not be able to edit everything within it as it would cause issues with the layout.

Is this possible?

Ryan

Re: Prevent a DIV in a Repeatable region from being editable

Hi Ryan, I've just updated the system. For each repeatable area that you don't want the whole content to be editable simply add this class:
no-repeat-edit

For example:

<div class="edit-repeat no-repeat-edit">
     // editable area 1
     // editable area 2
</div>

I hope that helps, let us know if you have any questions or problems.

Re: Prevent a DIV in a Repeatable region from being editable

SimpleCMS-Simon wrote:

Hi Ryan, I've just updated the system. For each repeatable area that you don't want the whole content to be editable simply add this class:
no-repeat-edit

For example:

<div class="edit-repeat no-repeat-edit">
     // editable area 1
     // editable area 2
</div>

I hope that helps, let us know if you have any questions or problems.

Thanks Simon, Fantastic support!