Skip to content

Instantly share code, notes, and snippets.

@ChrisCree
Created June 12, 2014 00:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChrisCree/877501c986a3bc5bd5cf to your computer and use it in GitHub Desktop.
Save ChrisCree/877501c986a3bc5bd5cf to your computer and use it in GitHub Desktop.
Remove the recurring info from the Events List widget in the The Events Calendar Pro.
<?php
// Do not copy opening PHP tag above
// Events Calendar - remove recurring event info
add_filter( 'tribe_events_recurrence_tooltip', 'wsm_remove_tec_recurring_info' );
function wsm_remove_tec_recurring_info( $tooltip ) {
if( !is_singular() )
$tooltip = '';
return $tooltip;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment