cliff
2/14/2017 - 11:21 PM

MT | TEC | Remove the iCal and Google cal links from the single event page

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' );