BakerMan

Change Google/iCal links

Aug 1st, 2013
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. remove_action('tribe_events_single_event_after_the_content', array('TribeiCal', 'single_event_links'));
  2. add_action('tribe_events_single_event_after_the_content', 'customized_tribe_single_event_links');
  3.  
  4. function customized_tribe_single_event_links()  {
  5.     if (is_single() && post_password_required()) {
  6.         return;
  7.     }
  8.  
  9.     echo '<div class="tribe-events-cal-links">';
  10.     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>';
  11.     echo '<a class="tribe-events-ical tribe-events-button" href="' . tribe_get_single_ical_link() . '">+ Pyjama Parties </a>';
  12.     echo '</div><!-- .tribe-events-cal-links -->';
  13. }
Add Comment
Please, Sign In to add comment