Problems, need help? Have a tip or advice? Post it here.
4 posts Page 1 of 1
Ok, I have problem and I'm stuck on that problem for few hours already. I create repeatable region following tutorial (shown on the picture 1):

Image

But, when I go to Admin panel i get this:

Image

So, there is no repeatable region. They are inside that "article":

Image

So where is the problem? Why that repeatable region is inside that article?
Hi,

Why that repeatable region is inside that article?

That is because your template is 'clonable' (i.e. you can create many pages out of it).
Each cloned page will have its own set of repeatable regions.

If you think the template shouldn't have been clonable, try searching for cms:template tag somewhere in the template (or maybe even in any embedded snippet) that is declaring clonable='1'

Hope this helps.
It shouldn't be clonable and there's no 'clonable' option on this page and 'cms:template'.
From your screenshot I can see that the template is shown as 'slider' and not 'slider.php' which points to a cms:template in action somewhere like
<cms:template title='slider' clonable='1'>

Probably some embedded snippet has the tag.
Please take a second look - it has to be somewhere.

As a last resort, try deleting the template (remove or rename the physical file and delete the cloned pages before you get this option). Recreate it again but place the following explicitly at its start
Code: Select all
<cms:template title='slider' clonable='0' >
</cms:template>

Please let us know how it goes.
4 posts Page 1 of 1