XF 2.0 Display advertising in forum overview

I have the same question. Is there an add on for that?
Yes it is.
We use this one:


and it works perfectly.

Solltest du fragen haben gerne auch per PM
 
Funny I was just looking into this and here it is the top thread in the category.

Here is where I am at... The template that needs changing is node_list_category
Code:
<xf:macro name="depth1" arg-node="!" arg-extras="!" arg-children="!" arg-childExtras="!" arg-depth="1">
    <div class="block block--category block--category{$node.node_id}">
        <span class="u-anchorTarget" id="{$node.Data.getCategoryAnchor()}"></span>
        <div class="block-container">
            <h2 class="block-header">
                <a href="{{ link('categories', $node) }}">{$node.title}</a>
                <xf:if is="{$node.description}"><span class="block-desc">{$node.description|raw}</span></xf:if>
            </h2>
            <div class="block-body">
                <xf:macro template="forum_list" name="node_list"
                    arg-children="{$children}"
                    arg-extras="{$childExtras}"
                    arg-depth="{{ $depth + 1 }}" />
            </div>
        </div>
    </div>
    
    
    <div>
    AD CODE HERE 
    </div>
    
    
    
    
</xf:macro>

So far so good. But if I want to add a conditional to show a different ad between each category that conditional would be....anybody? Buehler? Buehler? Buehler?
 
Top Bottom