Hi Koro,
That’s certainly possible with a small customization. Try adding this to your theme’s functions.php file, or else to a custom plugin:
add_action( 'wp', 'remove_ical_event_links' );
function remove_ical_event_links() {
remove_filter( 'tribe_events_after_footer', 'Tribe__Events__iCal::maybe_add_link', 10 );
remove_action( 'tribe_events_single_event_after_the_content', 'Tribe__Events__iCal::single_event_links' );
remove_action( 'tribe_tec_template_chooser', 'Tribe__Events__iCal::do_ical_template' );
remove_filter( 'tribe_get_ical_link', 'Tribe__Events__iCal::day_view_ical_link', 20 );
remove_action( 'wp_head', 'Tribe__Events__iCal::set_feed_link', 2 );
}
Does that help?