Xenforo New Post Button in Post

Dr.Pavlov

Инквизитор
Staff member
Admin
Compatible XF Versions 2.0, 2.1

New Post Button in Post
In Xenforo 2, you can add a new topic button when reading a topic.

new-post.jpgSetup;
ACP --> Template --> thread_view and find:

Code:
<xf:breadcrumb source="$forum.getBreadcrumbs()" />
Replace with the code below:

[HIDE=3]
Code:
<xf:breadcrumb source="$forum.getBreadcrumbs()" />
<xf:pageaction if="$forum.canCreateThread()">
<xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write">
{{ phrase('post_thread') }}
</xf:button>
</xf:pageaction>
[/HIDE]
 
Top