XF 1.4 Hide signatures to guests "advanced"...

Hi there,
i just have a question about the signatures.
I know, it´s possible to hide signatures for guests.
But is this possible:
I only want to show admin signature and hide the other signatures to guests.
Is there a way to handle it?

Thank you and have a good day,
Peter
 
I haven' t tested, but you can try this replacement in the message template:

Code:
<xen:if is="{$visitor.content_show_signature} && {$message.signature}">

with:

Code:
<xen:if is="{$message.user_id} == YOUR USER ID && {$message.signature}">
 
Top Bottom