Created
October 25, 2013 16:13
-
-
Save kelly-tribe/7157277 to your computer and use it in GitHub Desktop.
Snippet to add to your theme's functions.php file to change your iCal and Google Calendar links for your Events Calendar PRO plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| remove_action('tribe_events_single_event_after_the_content', array('TribeiCal', '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' ) . '">+ Chocolate Giraffes </a>'; | |
| echo '<a class="tribe-events-ical tribe-events-button" href="' . tribe_get_single_ical_link() . '">+ Pyjama Parties </a>'; | |
| echo '</div><!-- .tribe-events-cal-links -->'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment