I have the following problem. My node tree looks like this:
Home
News Area
- News1
- News2
Events Area
- Event1
- Event2
When you want to display it on the main site, everything is fine.
<xsl:for-each select="$currentPage/eventsArea/simpleEvent [@isDoc and string(umbracoNaviHide) != '1']">
However, this only works to find on the main page of my site. When I go to a subpage, this solution does not work anymore.
Does anyone know how to solve it?

