Plugin: Private BuddyPress

Join this plugin group to follow comments, support topics and reviews.

Is it possible to exclude components from the private buddypress plugin? (7 posts)

Started 1 year, 8 months ago by: Svenl77

  • Profile picture of Svenl77 Svenl77 said 1 year, 8 months ago:

    I would like to give normal visitors the rights to visit the blogs directory.
    Is there a way to exclude the blogs directory from being protected?

    thanks sven

  • Profile picture of Dennis Morhardt Dennis Morhardt said 1 year, 8 months ago:

    You can change the behavior with a filter. It will be added in version 1.0.3, but it’s already available in the development version. Add this function to your functions.php or in a file at mu-plugins:

    function make_blog_directory_visible($visibility) {
    	global $bp;
    
    	if ( bp_is_directory() && $bp->current_component == $bp->blogs->slug )
    		return false;
    
    	return $visibility;
    }
    
    add_filter('pbp_login_required_check', 'make_blog_directory_visible');
  • Profile picture of Svenl77 Svenl77 said 1 year, 8 months ago:

    works great. Thanks, just recognise, that I lost the options under Settings -> Privacy after the update.

  • Profile picture of helpy helpy said 1 year, 6 months ago:

    Hello!

    Is it possible to switch off HTTP Auth for Blog rss ?

    Thank you,
    guido

  • Profile picture of Dennis Morhardt Dennis Morhardt said 1 year, 6 months ago:

    Sorry, this is currently not possible.

  • Hi,

    I need to exclude groups directory from being protected… is it possible?

    Thanks!

  • Nevermind… I just did it.

    Thanks for the plugin!