XF 2.3 Add widgets under forum list block in a page-node

Old Nick

Well-known member
Hello,

I've created a page node and want to add some widgets under the forum list block. I haven't found a way to do this except by editing the page_view template, but that's not very practical. Is there another method?

If I add <xf:sidenav>some widgets...</xf:sidenav> in the page node template created, the forum list block appears below the widgets.
Thanks.
 
Solution
I see, the page template is evaluated before page_view so it's always the only item in the sidenav at that point. What you can do is modify page_view to read:
HTML:
<xf:sidenav mode="prepend">

Then anything in the page template <xf:sidenav> will appear underneath, which is perhaps slightly more practical. It's likely worth us making this change in the core and perhaps adding some widget positions here.
I see, the page template is evaluated before page_view so it's always the only item in the sidenav at that point. What you can do is modify page_view to read:
HTML:
<xf:sidenav mode="prepend">

Then anything in the page template <xf:sidenav> will appear underneath, which is perhaps slightly more practical. It's likely worth us making this change in the core and perhaps adding some widget positions here.
 
Solution
Back
Top Bottom