Load Child Pages content from parrent page using Xslt
Hi All,
I have problem in loading all Child pages Conten means data in their respective section on one page using loop or some other ways . i am useing lastest umbacro version.
Not sure if you have an existing XSLT macro, or want to create a new one. If it's a new one, then try one of the pre-defined templates from the Create window's dropdown list.
If you have an existing XSLT macro, you can try including this snippet:
Load Child Pages content from parrent page using Xslt
Hi All,
I have problem in loading all Child pages Conten means data in their respective section on one page using loop or some other ways . i am useing lastest umbacro version.
thanks in advance.
Hi Muhammad,
Not sure if you have an existing XSLT macro, or want to create a new one. If it's a new one, then try one of the pre-defined templates from the Create window's dropdown list.
If you have an existing XSLT macro, you can try including this snippet:
<ul> <xsl:for-each select="$currentPage/*[@isDoc]"> <li> <a href="{umbraco.library:NiceUrl(@id)"> <xsl:value-of select="@nodeName"/> </a> </li> </xsl:for-each> </ul>You can then customise the HTML as you desire.
Cheers, Lee.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.