Hello amazing people from CouchCMS,
I'm using the latest Couch 2.0 version, so I was just trying to implement the "Manually reorder normal cloned pages" for a Portfolio page (the one who uses orderby='weight' order='asc' and <cms:field 'k_up_down' />.
The output on my backend looks fine — the arrows are showing up — and when I click them the position of the pages change accordingly. But then I check the page and nothing changes. I've tried refreshing every page, cache cleaning... everything.
Sorting only seems to work when I manually edit the Date. What have I missed? I've re-read everything and I just can't get it to work...
This is what I have right after <?php require_once( 'couch/cms.php' ); ?>:
Thank you so much!
I'm using the latest Couch 2.0 version, so I was just trying to implement the "Manually reorder normal cloned pages" for a Portfolio page (the one who uses orderby='weight' order='asc' and <cms:field 'k_up_down' />.
The output on my backend looks fine — the arrows are showing up — and when I click them the position of the pages change accordingly. But then I check the page and nothing changes. I've tried refreshing every page, cache cleaning... everything.
Sorting only seems to work when I manually edit the Date. What have I missed? I've re-read everything and I just can't get it to work...
This is what I have right after <?php require_once( 'couch/cms.php' ); ?>:
- Code: Select all
<cms:template title='Projectos' clonable='1'>
<cms:config_list_view orderby='weight' order='asc'>
<cms:field 'k_selector_checkbox' />
<cms:field 'k_page_title' sortable='0' />
<cms:field 'k_page_foldertitle' />
<cms:field 'k_up_down' />
<cms:field 'k_actions' />
</cms:config_list_view>
<cms:editable name='titulo' label='titulo' desc='Titulo de projecto' type='text' />
<cms:editable name='ano_projecto' label='Ano' desc='Ano' desc='Ano' type='text' />
<cms:editable name='sinopse' label='Texto' desc='Escrever em baixo' toolbar='basic' type='richtext' />
<cms:editable name='link_para_vertigo' label='Link para Vertigo Gallery' desc='Exemplo: http://www.isabelvincke.com/Vertigo-Gallery/gallery.php?p=12' type='text' />
</cms:template>
Thank you so much!