PDA

View Full Version : [Solved] Member Info - Visitors


Stratis
04-14-2017, 02:25 PM
When I enable to for "visitors" "General Permissions -> Can View Member Info
I want visitors not be able to see:
1) Visitor Messages
2) Friends

Is there a way for this situation?

Thanks

Stratis
04-18-2017, 02:22 PM
Any suggestion? please.

EGNDRAGON
04-19-2017, 01:01 AM
Can u edit the usergroup


See pic below

http://imgur.com/a/93iqP

Stratis
04-19-2017, 04:40 AM
Yes, when "Can view member info" is to "Yes"
They see also as I describe above:
1) Visitor Messages
2) Friends

Those I do not want visitors to see.
Thanks for the answer.

EGNDRAGON
04-19-2017, 05:28 AM
Yes, when "Can view member info" is to "Yes"
They see also as I describe above:
1) Visitor Messages
2) Friends


Those I do not want visitors to see.
Thanks for the answer.

Look at pics below..


https://gyazo.com/3abf1b6a7393cd885a8cfa967554e552

https://gyazo.com/50a1afd6f3bbc7a65e816f208f881a68

Stratis
04-19-2017, 05:38 AM
As you see in your images there is no options not to show these:
1) Unregister can see Visitors Messages.
2) Unregister can see Friends from members.
Unregister can not, edit, post, delete... but can view visitor messages from members and there friends if they have.

Thanks for discuss.

CAG CheechDogg
04-23-2017, 01:56 AM
Find the following template:

memberinfo_block_visitormessaging

at the very top add:

<vb:if condition="$show['member']">
Show this to members only

very bottom add this:
</vb:if>

That will show it to members only ...

If you want to show it to only specific usergroups do it this way:

at very top add:

<vb:if condition="is_member_of($bbuserinfo, 1,2,3)">

very bottom add this:
</vb:if>

If you only want to show it to one usergroup just use remove all the others ....


Here are more template conditionals to help you out more :'

https://vborg.vbsupport.ru/showthread.php?t=231525


Do the same for the following templates for the friends:

memberinfo_block_friends_mini

memberinfo_block_friends

Stratis
04-24-2017, 12:14 PM
Thank you very very much, all ok with your instructions where to search.