Changing ”display_comments” Value in profile/activity/friends/ to ”stream”
-
Hey!
I’m back again with a new job!
I would like to activate “stream” as a display option in the activities of my friends in my profile. I hope you know what I mean …?I tried with this code in my functions.php, but had no success so far …:
`
function tf_threaded_or_stream( $display_comments ) {
global $bp, $activities_template;if ( ‘friends’ == $bp->current_action )
$display_comments = ‘stream’;return $display_comments;
}
add_filter( ‘bp_has_activities’, ‘tf_threaded_or_stream’ );
`Maybe someone has a solution, or a tip how I can filter the function “bp_has_activities” correctly?
SickSight
You must be logged in to reply to this topic.