We are using the default DNN (DDR) menu using XSLT to display it.
We are using the term NodeSelector="CurrentChildren" i.e.
<dnn:MENU MenuStyle="ULXSLT" runat="server" NodeSelector="CurrentChildren"></dnn:MENU>
Only problem is that it displays the Children (great) and its Sibling (not wanted!) i.e. other pages on the same level as that one.
For example: we have 4 areas - Area 1, Area 2, Area 3 and Area 4.
Each Area has a sub area... Sub Area A, Sub Area B, Sub Area C, Sub Area D
We therefore want a menu that sows
Sub Area A
Sub Area B
Sub Area C
Sub Area D
And what we have is:
Sub Area A
Sub Area B
Sub Area C
Sub Area D
Area 2
Area 3
Area 4
Why are these Areas 2, 3 & 4 showing when they are clearly siblings and not children?! Remember we are using 'Current Children' only!