Adding side panel to whats new page ?

You'll have to edit the "find_new_threads" template,
and wrap your sidebar content inside the: <xen:sidebar> ... </xen:sidebar> tags.

Place this at the end of the template:
Code:
<xen:sidebar>
	Hello World!
</xen:sidebar>
 
Hmm yes, doesnt seem to work the way i wanted

I placed the following at the bottom (hoping to pull in the shoutbox, but didnt seem to work)

Code:
<xen:sidebar>

    <xen:edithint template="sidebar.css" />

    <xen:include template="sidebar_online_users" />

<xen:include template="dark_taigachat" />

<xen:include template="yilmaz_top_threads" />
</xen:sidebar>
 
That wouldn't work because the data required for those templates usually won't be available on the what's new page. For the "dark_taigachat" and "yilmaz_top_threads" templates, you'll need to contact the respective addon author.
 
Top Bottom