Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created March 19, 2014 13:38
Show Gist options
  • Save ckpicker/9641828 to your computer and use it in GitHub Desktop.
Save ckpicker/9641828 to your computer and use it in GitHub Desktop.
Events Calendar 3.4.1 // Hide "Unnamed Venue" from single event meta
add_filter( 'tribe_event_pro_meta_venue_name', 'hide_unnamed_venues_from_meta' );
function hide_unnamed_venues_from_meta( $html ) {
if ( false !== strpos( $html, 'Unnamed Venue' ) ) return '';
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment