Forum for discussing general topics related to Couch.
2 posts Page 1 of 1
Hi,
Does anyone know if there is a way to manually sort Folders from the list view in the admin (like you can with pages using the up/down arrows)? Is there any way to customize that list view like you can when viewing a list of cloned pages? I know you can enter a weight when editing the details of a folder, but thought it would be a lot nicer if you could also do this using up and down arrows in the list view.

Thanks in advance for any help you can give.
A simple solution will be putting numbers before. Instead of
Code: Select all
<cms:folder name="earth" title="earth" />
<cms:folder name="fire" title="fire" />
<cms:folder name="wind" title="wind" />

try
Code: Select all
<cms:folder name="fire" title="01 fire" />
<cms:folder name="earth" title="02 earth" />
<cms:folder name="wind" title="03 wind" />
2 posts Page 1 of 1