xenForo 2.0 ilk mesajdan alıntı yapılmasın

12 Şub 2018
9
0
1
xenForo 2.0 sürümlerinde ilk mesajdan alıntı yapılmasını istemiyorsanız eğer, aşağıdaki değişiklikleri yaparak ilk mesajdan alıntı yapılmasını engelleyebilirsiniz.

Kullandığınız temanın post_macros şablonunda aşağıdaki kodları bulun;
PHP:
<xf:if is="$thread.canReply()">
        <xf:set var="$quoteLink">{{ link('threads/reply', $thread, {'quote': $post.post_id}) }}</xf:set>

        <xf:if is="$xf.options.multiQuote">
            <a href="{$quoteLink}"
                class="actionBar-action actionBar-action--mq u-jsOnly js-multiQuote"
                title="{{ phrase('toggle_multi_quote_tooltip')|for_attr }}"
                data-message-id="{$post.post_id}"
                data-mq-action="add">{{ phrase('quote') }}</a>
</xf:if>
Aşağıdaki kodlar ile değiştirin;
PHP:
<xf:if is="$post.position % $xf.options.messagesPerPage == 0"><xf:else />
    <xf:if is="$thread.canReply()">
        <xf:set var="$quoteLink">{{ link('threads/reply', $thread, {'quote': $post.post_id}) }}</xf:set>

        <xf:if is="$xf.options.multiQuote">
            <a href="{$quoteLink}"
                class="actionBar-action actionBar-action--mq u-jsOnly js-multiQuote"
                title="{{ phrase('toggle_multi_quote_tooltip')|for_attr }}"
                data-message-id="{$post.post_id}"
                data-mq-action="add">{{ phrase('quote') }}</a>
        </xf:if>
</xf:if>
 

Benzer konular