XF 1.2 Child pages of pages not showing in node list

Stuart Wright

Well-known member
What am I doing wrong?
temp1.webp
Page node PicturePerfect: Step 1 is set up as child of PicturePerfect, but it's not appearing as a child in the node list.
temp2.webp
 
The template only displays the children at level 1. (Since you're in a forum/category, we start the display styling at level 2.)

You may be able to change or apply different styling to show further children (such as in the style of a sub-forum list) but you'd need to modify the node_page_level_2 template.
 
As Mike mentioned, in the node_page_level_2 template

if you find:
<xen:if is="{$renderedChildren} AND {$level} == 1">
and replace it with:
<xen:if is="{$renderedChildren} AND {$level} == 1 OR 2">

you should get a list of the children for each parent which then you would just have to style to suit
 
On our forum list, I have created small node icons so we can apply them to all levels of nodes.
temp1.webp

Chris Deeming created our template for subforums on the forum list, but he's busy doing his media gallery.
Can anyone help with some template styling to apply the same styling to the category page subforums please?
It's beyond me.
 
Top Bottom