Viewing 1 replies (of 1 total)
  • Plugin Author shanebp

    (@shanebp)

    Our Pro version will add the title as part of the link to the Event in the activity feed.
    BuddyPress Simple Events Pro

    For the free version, you could add this to your bp-custom.php file:

    function pp_filter_activity_free_event_action( $action, $activity ) {
    
    	if ( $activity->type == 'new_event' ) {
    
    		$add_title = 'Event - ' . get_the_title( $activity->secondary_item_id ) . '</a>';
    
    		$action = str_replace( 'Event</a>', $add_title, $action);
    
    	}
    	return $action;
    }
    add_filter( 'bp_activity_custom_post_type_post_action', 'pp_filter_activity_free_event_action', 1, 2) ;

Viewing 1 replies (of 1 total)

The topic ‘Display Event title on activity feed?’ is closed to new replies.