Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
I need to list all pages in the current directory but without current page.
For example if I have
-----------------------------
Index
Page1
Page2
Page3
it must show only Page1, Page2 and Page3.
I tried with
<xsl:for-each select="$currentPage/ancestor-or-self::* [@level=$level]/* [@isDoc and string(umbracoNaviHide) != '1']">
but it still show the Index page.
Try this:
<xsl:for-each select="$currentPage/ancestor-or-self::* [@level=$level]/* [@isDoc and string(umbracoNaviHide) != '1' and @id != $currentPage/@id]">
thanks, that worked :)
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.
Continue discussion
Pages on current level
Hi,
I need to list all pages in the current directory but without current page.
For example if I have
-----------------------------
Index
Page1
Page2
Page3
-----------------------------
it must show only Page1, Page2 and Page3.
I tried with
but it still show the Index page.
Try this:
thanks, that worked :)
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.