Problems, need help? Have a tip or advice? Post it here.
6 posts Page 1 of 1
Hi KK,
I am currently using Couch 2.2.1 and want to output all dynamic folders with limit and Offset but it's not working.

What I seek to achieve is that I have to columns and want to out 3 folders in each column so I decided to do this in the second column but it's not working. All the folders are showing.
Code: Select all
<cms:folders masterpage='blog.php' limit='3' offset='3'>
.......
</cms:folders>
Please add paginate='1' -
Code: Select all
<cms:folders masterpage='blog.php' paginate='1' limit='3' offset='3'>
..
Hello KK,
Thanks for the response, however the result is still the same: All the folders are showing.
Code: Select all
<cms:folders masterpage='shop.php' paginate='1' limit='3' >
   <cms:show k_folder_title /><br>
</cms:folders>
My apologies. The 'hierarchical' param also needs to be set - please try the following
Code: Select all
<cms:folders masterpage='shop.php' paginate='1' hierarchical='1' limit='3' >
   <cms:show k_folder_title /><br>
</cms:folders>

Hope this helps.
Yeeeeeeeepeeeeeee my BOSS KK just saved me. Come and see me dancing here. Thanks KK. You're awesome
You are welcome :) I am glad I could help.
6 posts Page 1 of 1