XF 1.2 Show sidebar on all pages??

ipunkbali

New member
Looking for an add-on or a nice tutorial for this:unsure:

Want to show sidebar on all forums and threads

Ok, so i modified forum_view and thread_view templates..

Adding..
Code:
<xen:sidebar>
Content here
</xen:sidebar>

But not sure how to call the sidebar that look exactly like in the homepage
 
Last edited:
Looking for an add-on or a nice tutorial for this:unsure:

Want to show sidebar on all forums and threads

Ok, so i modified forum_view and thread_view templates..

Adding..
Code:
<xen:sidebar>
Content here
</xen:sidebar>

But not sure how to call the sidebar that look exactly like in the homepage

I think the Widget Framework add on might allow you to do this.
 
Include this between <xen:sidebar></xen:sidebar> then edit as necessary.

Code:
<div class="section">
        <div class="secondaryContent">
            <h3>Something</h3>
            <ul>
                <xen:contentcheck>
                 CONTENT GOES HERE
                </xen:contentcheck>
            </ul>
        </div>
    </div>
 
Top Bottom