XF 2.2 If I need help to customize my forum?

Cashisking

Member
If I need help to customize my forum? do I ask over here or is there some other place I need to go ?
I have had loads of help from people over on Fiverr for my company word press sites - but this could be different.
I am just curious !!!
 
For the node color, you can check this guide:


For the banner between the nodes, you'll need to edit node_list_category template (or better create a template modification).

In that template FIND:
HTML:
                    arg-depth="{{ $depth + 1 }}" />
            </div>
        </div>
    </div>


ADD BELOW:
HTML:
    <xf:if is="{$node.node_id} == X ">
        - your code -
    </xf:if>

Where X is your node ID number.
 
No, something like that:
HTML:
<xf:if is="{$node.node_id} == X ">
    <img src="http://www.rangers4us.com/image/gerstv2.png" alt="Rangers TV" width="970" height="90">
</xf:if>
 
Last edited:
Top Bottom