calmcacil

Customer
I'd like to request help to customize my style to show Advanced Footer on forum home only. Alternatively just add a checkbox to show it on forumhome only, that'd probably be the optimal solution ;)
 
I'd like to request help to customize my style to show Advanced Footer on forum home only. Alternatively just add a checkbox to show it on forumhome only, that'd probably be the optimal solution ;)

We probably won't add that as an option on the framework however it's a fairly easy fix.

You can browse to the footer template:

Code:
<xen:if is="@xb_footer_Enable">
   <xen:include template="xb_footer_layouts" />
</xen:if>
Edit the conditional to something like....

Code:
<xen:if is="@xb_footer_Enable && {$contentTemplate} == 'forum_list'"">
   <xen:include template="xb_footer_layouts" />
</xen:if>

I think that should work, it'll only load the footer if it's enabled and if the template is on the forum list.
 
Ya technically rounded is the default well should be with no advanced footer. To change it head to style properties - footer - main container
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back