XenForo Moving the post_thread button in forum_view

M

Mr Lucky

Guest
In forum_view template I wish to move the post thread button to replace the page navigation. This should be easy shouldn't it?

post_thread.webp

The code for the button is

Rich (BB code):

Code:
<xf:pageaction if="$forum.canCreateThread() OR $forum.canCreateThreadPreReg()">
    <xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write" rel="nofollow">
        {{ phrase('post_thread') }}
    </xf:button>
</xf:pageaction>

And I remove the pagenav and move button to the same...

Read more

Continue reading...