Problems, need help? Have a tip or advice? Post it here.
3 posts Page 1 of 1
I am using nested_pages to structure my website navigation. It works wonderfully. I am trying to display the parent title of any arbitrary nested page but I am having trouble finding the couch variable for that.

I noticed that "k_nested_parent_id" exist, but I cannot find the title or name equivalent. Is there such thing?

Thanks
Rudy
Hi Rudy,

Once a page's id or name is known, it is trivial to 'resurrect' the entire page using cms:pages tag.
In your case we can do that using the 'id' parameter like this -
Code: Select all
<cms:pages id=k_nested_parent_id >
   <!-- all data about the page available here -->
   <cms:show k_page_title />
</cms:pages>

Does this help?
Works like a charm

Thanks!
3 posts Page 1 of 1