Status Update & Blog Comments Only in Activity Stream
- 
		Hi, I am using latest WP and BP. I want to include blog comments (from main blog) and status updates in my activity stream. I have this filter to only show status updates in my activity stream which is added in my child theme’s function.php file: function my_custom_query_filter( $query_string ) { 
 $query_string .= ‘&action=activity_update’;return $query_string; 
 }
 add_filter( ‘bp_dtheme_ajax_querystring’, ‘my_custom_query_filter’ );What do i need to add so that blog comments from my main blog also show up in the activity stream? Thanks already. 
Viewing 3 replies - 1 through 3 (of 3 total)
	
Viewing 3 replies - 1 through 3 (of 3 total)
	
- The topic ‘Status Update & Blog Comments Only in Activity Stream’ is closed to new replies.