Advertisement
BakerMan

Remove iCal link from month view

Oct 3rd, 2013
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. add_action('tribe_events_before_template', 'remove_ical_from_month_view');
  2.  
  3. function remove_ical_from_month_view() {
  4.     if (tribe_is_event_query() && tribe_is_month())
  5.         remove_filter('tribe_events_after_footer', array('TribeiCal', 'maybe_add_link'), 10, 1);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement