I would like to create another button beside Google Calendar and iCal Export. I did it, however the link appears to be the same as the iCal export. Here’s the code added to the functions.php:
// adds another button for agreement
remove_action( 'tribe_events_single_event_after_the_content', array( tribe( 'tec.iCal' ), 'single_event_links' ) );
add_action( 'tribe_events_single_event_after_the_content', 'customized_tribe_single_event_links' );
function customized_tribe_single_event_links() {
if ( is_single() && post_password_required() ) {
return;
}
echo '<div class="tribe-events-cal-links">';
echo '+ Google Calendar ';
echo '+ iCal Export ';
echo '+ Agreement ';
echo '</div>';
}