XF 1.4 Disabled Signature in Thread

WSWD

Well-known member
Did a pretty thorough search and couldn't find anything on this. Only found how to disable for a particular forum.

Is there any means, add-on or otherwise, for disabling signatures in an individual thread?
 
In message template,

Code:
<xen:if is="{$thread.thread_id} != x">
<xen:if is="{$visitor.content_show_signature} && {$message.signature}">
            <div class="baseHtml signature messageText ugc{xen:if $message.isIgnored, ' ignored'}"><aside>{xen:raw $message.signatureHtml}</aside></div>
        </xen:if>
</xen:if>

Replace X with thread ID.
I guess it's the only solution for now.
 
Top Bottom