Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Privacy


Avi M
Participant

@avim

I think improved privacy is must for things like member profiles, so I looking forward to seeing the updated plugin and possible improvements to 1.3.

In the mean time I thought I would offer up the following.

A while back asked a question on this very question over at premium.wpmudev.org and here is the response/ solution I was given. No idea if it can applied to other theme or BP 1.2 but for what it’s worth here it is.

ok, back to your question..
i see the member directory still viewable after turn on privacy...yeap
it is a glitch in theme...no worry here's an easy fix

open profile/index.php
and copy the top code

<?php $privacy_enable = get_option('tn_buddysocial_privacy_status'); if($privacy_enable == 'enable') { ?>
<?php if (!is_user_logged_in() ) { ?>
<?php wp_redirect(get_option('siteurl') . '/wp-login.php'); ?>
<?php } ?>
<?php } //off ?>

to directories\members\index.php before get_header();
actually you can apply this to any page you do not want unlogged user to view like group, forum etc..

Hope this helps.

Here is a link to the actual thread.

http://premium.wpmudev.org/forums/topic/social-theme-privacy-options-not-working-1

Skip to toolbar