Skip to content

Instantly share code, notes, and snippets.

@kelly-tribe
Last active December 25, 2015 03:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kelly-tribe/6909509 to your computer and use it in GitHub Desktop.
Save kelly-tribe/6909509 to your computer and use it in GitHub Desktop.
Altering or Removing Headings on Calendar and List Views
<?php
add_filter('tribe_get_events_title', 'change_upcoming_events_title');
function change_upcoming_events_title($title) {
//We'll change the title on upcoming and map views
if (tribe_is_upcoming() or tribe_is_map() or tribe_is_photo()) return 'Upcoming Parties';
//In all other circumstances, leave the original title in place
return $title;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment