OK, thanks for that info.
I now get some information from the Content Picker, but I am still missing the subpages.
Let me set up the scenario..
Frontpage
- Page1
- Page2
- Page3 (hide from navi)
o Page3.1
o Page3.2
o Page3.3
Page 3 has the following code, that’s lists the subpages.
Code:
<xsl:for-each select="$currentPage/ancestor-or-self::node [@level=$level]/node [string(data [@alias='umbracoNaviHide']) != '1']">
» <xsl:value-of select="@nodeName"/>
And that works fine.
Now I would like to get this information on the Frontpage
I set up a content picker and select Page3 – this shows a number..
I then use this xslt
Code:
<xsl:value-of select="umbraco.library:GetXmlNodeById($currentPage/data [@alias = 'Dates'])/data "/>
This only returns the text from the Richtext editor and not the list of subpages from Page3
How can I get the subpages to be listed on the Frontpage?
/ Kristjan