进入后台 — 网站外观 — 模板列表,找到“thread_view”,查找:
<xf:breadcrumb source="$forum.getBreadcrumbs()" />
在下方一行,添加:
<xf:pageaction>
<xf:if is="$thread.canReply()">
<xf:button href="{{ link('threads/reply', $thread) }}" data-xf-click="overlay" class="button--primary" icon="reply">
{{ phrase('post_reply') }}
</xf:button>
</xf:if>
<xf:if is="$xf.visitor.canCreateThread() OR $xf.visitor.canCreateThreadPreReg()">
<xf:button href="{{ link('forums/post-thread', $forum) }}" class="button--cta" icon="write" rel="nofollow">
{{ phrase('post_thread') }}
</xf:button>
</xf:if>
</xf:pageaction>
完工!