To change the text on your Events Calendar Ical and Google Calendar buttons, you need to add a snippet to the coding for your Wordpress theme.


To do so, please follow these steps:


1. Navigate to Appearance >custom CSS


2. Enter the coding shown below, adding your unique button text in place of the red text.


Please note, the following snippet will change your buttons to read: "Export the Map" and "Export to Calendar". If you prefer different text, edit the red text below with the text you want your buttons to display.


// Changes the text labels for Google Calendar and iCal buttons on a single event page
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 '<a class="tribe-events-gcal tribe-events-button" href="' . tribe_get_gcal_link() . '" title="' . __( 'Add to Google Calendar', 'tribe-events-calendar-pro' ) . '">+ Export the Map </a>';
echo '<a class="tribe-events-ical tribe-events-button" href="' . tribe_get_single_ical_link() . '">+ Export to Calendar </a>';
echo '</div>';
}