Nulumia
Well-known member
Searched some similar threads but none of them hit the mark.
When rendering the node list, XF1.5 doesn't distinguish between whether it's on forum_list or discussion_list (Both use the same code in node_list template)
I'd like to add some additional classes to the ol list:
.. but only on the forum_list. If I use
When rendering the node list, XF1.5 doesn't distinguish between whether it's on forum_list or discussion_list (Both use the same code in node_list template)
I'd like to add some additional classes to the ol list:
<ol class="nodeList sectionMain here" id="forums">
.. but only on the forum_list. If I use
<xen:if is="{$contentTemplate} == 'forum_list'"></xen:if>
, it works within PAGE_CONTAINER but not within node_list. Is there any way to perform this conditional here?