XenForo Konudaki Alıntı Butonu Nasıl Kaldırılır?

Katılım
11 Şub 2020
Mesajlar
288
Aldığı beğeni
5
Puanları
18
Konum
İstanbul
Ticaret: 1 / 0 / 0
Temanızın post isimli şablonunda bulun.

Kod:
<xen:if is="{$canReply}">
                    <xen:if is="{$xenOptions.multiQuote}"><a href="{xen:link threads/reply, $thread, 'quote={$post.post_id}'}"
                        data-messageid="{$post.post_id}"
                        class="MultiQuoteControl JsOnly item control"
                        title="{xen:phrase toggle_multi_quote_tooltip}"><span></span><span class="symbol">{xen:phrase multiquote_add}</span></a></xen:if>
                    <a href="{xen:link threads/reply, $thread, 'quote={$post.post_id}'}"
                        data-postUrl="{xen:link posts/quote, $post}"
                        data-tip="#MQ-{$post.post_id}"
                        class="ReplyQuote item control reply"
                        title="{xen:phrase reply_quoting_this_message}"><span></span>{xen:phrase reply}</a>
                </xen:if>

Ve değiştirın.

Kod:
<xen:if is="{$post.position} % {$xenOptions.messagesPerPage} == 0"><xen:else />
               <xen:if is="{$canReply}">
                   <xen:if is="{$xenOptions.multiQuote}"><a href="{xen:link threads/reply, $thread, 'quote={$post.post_id}'}"
                       data-messageid="{$post.post_id}"
                       class="MultiQuoteControl JsOnly item control"
                       title="{xen:phrase toggle_multi_quote_tooltip}"><span></span><span class="symbol">{xen:phrase multiquote_add}</span></a></xen:if>
                   <a href="{xen:link threads/reply, $thread, 'quote={$post.post_id}'}"
                       data-postUrl="{xen:link posts/quote, $post}"
                       data-tip="#MQ-{$post.post_id}"
                       class="ReplyQuote item control reply"
                       title="{xen:phrase reply_quoting_this_message}"><span></span>{xen:phrase reply}</a>
               </xen:if>
</xen:if>
 
Üst