XF 1.4 Hide content for guests and show a message

Betclever

Well-known member
Hello all,

Is it any add-on to hide content for guests and show a message like "Please register to view this post"?

Thanks.
 
Try using this conditional. It's what we used to hide the content within code tags to guests:

Code:
<xen:if is="{$visitor.user_id}">Content to hide here</xen:if>
 
Top Bottom