post new thread button

The forum_view template contains the code for that:

Code:
<xen:if is="{$canPostThread}">
    <xen:set var="$newDiscussionButton"><a href="{xen:link 'forums/create-thread', $forum}" class="callToAction"><span>{xen:phrase post_new_thread}</span></a></xen:set>
    <xen:if is="!{$renderedNodes}">
        <xen:topctrl>{xen:raw $newDiscussionButton}</xen:topctrl>
    </xen:if>
</xen:if>

If you view the page source, you can determine the template by means of the class which is near the top of the page: <div id="content" class="forum_view">
 
Thanks Brogan.

Sorry Im a bit of a rookie...
tongue.png
 
Top Bottom