I managed to add custome post type function for portfolio to show up on activity stream however i didnt managed to display featured photo on the stream.
Here the css i added on custom function.php;
add_post_type_support( ‘bb_project’, ‘buddypress-activity’ ); function customize_page_tracking_args() {
// Check if the Activity component is active before using it. if ( ! bp_is_active( ‘activity’ ) ) { return; }
bp_activity_set_post_type_tracking_args(
‘page’, array( ‘action_id’ => ‘new_blog_page’, ‘bp_activity_admin_filter’ => __( ‘Published a new page’, ‘boss’ ),
‘bp_activity_front_filter’ => __( ‘Pages’, ‘boss’ ),
‘contexts’ => array( ‘activity’, ‘member’ ),
‘activity_comment’ => true, ‘bp_activity_new_post’ => __( ‘%1$s posted a new page‘, ‘boss’ ), ‘bp_activity_new_post_ms’ => __( ‘%1$s posted a new page, on the site %3$s’, ‘boss’ ), ‘position’ => 100, ) ); }
add_action( ‘bp_init’, ‘customize_page_tracking_args’ );
is there any solution to display the featured image on the activity stream?
-
This reply was modified 7 years, 5 months ago by shahidjaszle.