-
Add custom sidebar block
I figured this would be complicated, but it's actually a pretty easy edit to make. http://xenforomods.info/styles/defau...es/biggrin.png I didn't already see a guide for this, so:
1. Make a custom template (any title is fine):
PHP Code:
<div class="section">
<div class="secondaryContent">
<h3>TITLE</h3>
TEXT INSIDE
</div>
</div>
2. Open template PAGE_CONTAINER and find {xen:raw $sidebar}. Just below that (before the closing div tag), add:
PHP Code:
<xen:include template="name_of_your_custom_template" />
That should be it! The block will appear at the bottom of the sidebar. If you want it to appear just below the visitor_panel block, but above the Staff/Members Online Now blocks, move the xen:include tag one line up, above {xen:raw $sidebar}. http://xenforomods.info/styles/defau...lies/smile.png
EDIT: I just noticed that this causes it to appear on every sidebar; I'll see if I can change that.