• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Default XF Footer Additional Boxes

Status
Not open for further replies.
There isn't much you can't do if you want to modify something. You could wrap conditionals around the inserted template for example,

<xen:if is="{$contentTemplate} == 'forum_list'">
This content will show on the xyz template
</xen:if>

The main forum home page is called "forum_list". <edited to reflect Brogans input below>

That is how you could show this just on the forum home page, as an example.
 
Enable debug, go into Development tab, Code Event Listeners, then disable the listener template hook for Custom Footer.

You could then insert the template manually into the bottom of the footer template using <xen:include template="footer_custom" />

Place it right down the bottom of that container, then style it appropriately to how you want it, ie. if you don't want it using pageWidth and instead full width, then remove that set of divs in the footer_custom template. You can still control its styling from the footer_custom.css template and its associated style options panel.
 
Status
Not open for further replies.
Top Bottom