Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
Image

hi i triet this code in my pc it's working perfectly but when it comes to hosting it dosent work .. clonable not working

<?php require_once( '../admin/cms.php' ); ?>
<cms:template title='blog'>
<cms:editable name='blog_content' type='richtext' clonable='1' />

<cms:editable name='blog_image'
crop='1'
width='610'
height='150'
type='image'
/>

</cms:template>

[img][img][/img][/img] :( :(

Hi,

You have used the clonable='1' parameter with the wrong tag -
<cms:template title='blog'>
<cms:editable name='blog_content' type='richtext' clonable='1' />

Please edit your code to make it as follows -
<cms:template title='blog' clonable='1'>
<cms:editable name='blog_content' type='richtext' />

It is the <cms:template> tag has to be declared as being clonable.

Please make sure to visit the modified template as super-admin for the change to be picked up by Couch.

Hope it helps :)
2 posts Page 1 of 1
cron