Hi,
Do you mean event comments?
@caimin_nwl I completely missed your reply.
Yes, I’d like to show the comments that people make on events in the buddypress activity stream.
you can try to look into php file at events-manager/buddypress/bp-em-activity.php
@ewebber,
How did you do it? I used this function to show page,post & event comments in BP activity. It works for Pages and Posts, but it doesn’t work for Events.
Any ideas?
function activity_publish_post_type_comments( $types ) {
$types[] = 'page';
$types[] = 'post';
$types[] = 'new_event';
return $types;
}
add_filter( 'bp_blogs_record_comment_post_types', 'activity_publish_post_type_comments' );
@allenpayne
One thing I can see that is definitely wrong with your code is that the type for events isn’t new_event. It’s either event or events. Can’t remember offhand and on phone so can’t check.