After cloning a page, I want each page cloned to be listed on the default page if that makes sense? How would I do that?
You need to place <cms:pages> tag (that does the listing) in the proper view e.g. as follows
- Code: Select all
<cms:if k_is_page>
<!-- Show a single cloned page here e.g. -->
<h1><cms:show k_page_title /></h1>
..
<cms:else />
<!-- Show a list of cloned pages here -->
<cms:pages>
<h1><cms:show k_page_title /></h1>
..
</cms:pages>
</cms:if>
In case you need more info on views, perhaps the following links would be useful -
http://docs.couchcms.com/concepts/cloned-pages.html
http://docs.couchcms.com/concepts/views.html
http://docs.couchcms.com/concepts/varia ... views.html
http://docs.couchcms.com/concepts/listing-pages.html
Hope it helps.