XF 1.1 Default privacy options

Morgain

Well-known member
Under the user's privacy tab I would like the default settings to show ALL boxes ticked, and ALL showing Members only.

How?
If there is no admincp setting for this, I will change a file by FTP if you tell me how.
 
Here are the queries to set all privacy options to members only:
Code:
UPDATE xf_user_privacy SET allow_view_profile = 'members';
UPDATE xf_user_privacy SET allow_post_profile = 'members';
UPDATE xf_user_privacy SET allow_receive_news_feed = 'members';
UPDATE xf_user_privacy SET allow_send_personal_conversation = 'members';
UPDATE xf_user_privacy SET allow_view_identities = 'members';

What else did you need?
 
That's all of them Brogan. Thank you for help way beyond ...
I'll have a look at phpmyadmin and see if I can understand where to put those.

Very please to see you taking some time off by the way.
 
Click on phpMyAdmin, click on the database in the sidebar on the left, click the SQL tab, paste the queries into the window, click Go in the bottom right corner.

phpmyadmin.webp
 
Top Bottom