XF 2.2 User Privacy Group Permissions Setting

dunowat

Member
Is it possible to hide privacy status for registered and/or control it via group permissions? I'd like to make it an elevated feature.

I saw the ability to bypass but not the ability to restrict it. I was also thinking of hiding this information from unregistered so its not viewable.
 
Is it possible to hide privacy status for registered and/or control it via group permissions? I'd like to make it an elevated feature.

I saw the ability to bypass but not the ability to restrict it. I was also thinking of hiding this information from unregistered so its not viewable.
What exactly do you want to hide?

In a template you can hide content via a conditional.
x = user group.
Code:
<xf:if is="{{!$xf.visitor.isMemberOf(x)}}">
                Hide content...
</xf:if>
 
Last edited:
Top Bottom