修改模板 thread_view 查找 PHP: <xen:navigation> <xen:breadcrumb source="$nodeBreadCrumbs" /></xen:navigation> 下面加入 PHP: <xen:if is="{$canReply}"> <xen:topctrl><a href="{xen:link 'forums/create-thread', $forum}" class="callToAction"><span>{xen:phrase post_new_thread}</span></a></xen:topctrl></xen:if>
如增加 “发布新主题” 和 “回复主题”两个按钮。则加入 代码: <xen:if is="{$canReply}"> <xen:topctrl><a href="{xen:link 'forums/create-thread', $forum}" class="callToAction"><span>{xen:phrase post_new_thread}</span></a> <a href="{xen:link 'threads/reply', $thread}" class="callToAction"><span>{xen:phrase reply_to_thread}</span></a></xen:topctrl> </xen:if>