Skip to content

Instantly share code, notes, and snippets.

@messaoudi-mounir
Last active January 2, 2016 22:59
Show Gist options
  • Save messaoudi-mounir/8373632 to your computer and use it in GitHub Desktop.
Save messaoudi-mounir/8373632 to your computer and use it in GitHub Desktop.
Buddypress : This code hide comments for no logged in users
/**
* Add the code to functions.php of your current theme.
* this code hide comments for no logged in users
*/
add_filter( 'bp_activity_get_comment_count' , 'bp_only_loggedin_can_see_comments', 10,1 );
function bp_only_loggedin_can_see_comments( $count ){
if ( !is_user_logged_in() )
$count = 0;
return $count;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment