MT | TEC | Remove the iCal and Google cal links from the single event page
<?php
/**
* Removes the iCal and Google cal links from the single event page
*/
function tribe_remove_single_calendar_links() {
if ( function_exists( 'tribe' ) ) {
remove_action( 'tribe_events_single_event_after_the_content', array( tribe( 'tec.iCal' ), 'single_event_links' ) );
}
}
add_action( 'init', 'tribe_remove_single_calendar_links' );