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...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
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...