How To Hide Signature From Guests?

DRE

Well-known member
Hi, how do you hide the whole signature area from guests.

Also, I noticed that signatures don't show up on xenforo.com when viewing the site as a guest.

How do I do that too?
 
template: post

Code:
<xen:set var="$messageAfterTemplate">
 
<div class="messageMeta">
 
<div class="privateControls">
<xen:if is="{$post.canInlineMod}"><input type="checkbox" name="posts[]" value="{$post.post_id}" class="InlineModCheck item" data-target="#post-{$post.post_id}" title="{xen:phrase select_this_post_by_x, 'name={$post.username}'}" /></xen:if>
<span class="item muted">
<xen:username user="$post" class="author" />,
<a href="{xen:link threads/post-permalink, $thread, 'post={$post}'}" title="{xen:phrase permalink}" class="datePermalink"><xen:datetime time="$post.post_date" /></a>
</span>
;)
 
template: post

Code:
<xen:set var="$messageAfterTemplate">
 
<div class="messageMeta">
 
<div class="privateControls">
<xen:if is="{$post.canInlineMod}"><input type="checkbox" name="posts[]" value="{$post.post_id}" class="InlineModCheck item" data-target="#post-{$post.post_id}" title="{xen:phrase select_this_post_by_x, 'name={$post.username}'}" /></xen:if>
<span class="item muted">
<xen:username user="$post" class="author" />,
<a href="{xen:link threads/post-permalink, $thread, 'post={$post}'}" title="{xen:phrase permalink}" class="datePermalink"><xen:datetime time="$post.post_date" /></a>
</span>
;)
Thank you very much!!! I was looking everywhere in thread_view lmao
 
Top Bottom