With The Events Calendar Shortcode plugin, to remove the link to the individual event from the title, you can add a small snippet of code to your theme’s functions.php or a functional plugin:
function ecs_remove_link( $content ) { return ''; } add_filter( 'ecs_event_list_title_link_start', 'ecs_remove_links' ); add_filter( 'ecs_event_list_title_link_end', 'ecs_remove_links' );