Для удобства использования добавлен плагин. Достаточно просто его импортировать и всё, не нужно вносить никаких ручных правок в шаблон. :) Плагин работает только на XenForo 1.2.x!
В шаблоне post находим:
И заменяем на:
В шаблоне post находим:
Код:
<xen:if is="{$canReply}">
<a href="{xen:link threads/reply, $thread, 'quote={$post.post_id}'}" data-postUrl="{xen:link posts/quote, $post}" class="ReplyQuote item control reply" title="{xen:phrase reply_quoting_this_message}"><span></span>{xen:phrase reply}</a>
</xen:if>
И заменяем на:
Код:
<xen:if is="{$post.position}!=0">
<xen:if is="{$canReply}">
<a href="{xen:link threads/reply, $thread, 'quote={$post.post_id}'}" data-postUrl="{xen:link posts/quote, $post}" class="ReplyQuote item control reply" title="{xen:phrase reply_quoting_this_message}"><span></span>{xen:phrase reply}</a>
</xen:if>
</xen:if>