Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created June 24, 2014 16:51
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 ckpicker/e543ae90435240510ea4 to your computer and use it in GitHub Desktop.
Save ckpicker/e543ae90435240510ea4 to your computer and use it in GitHub Desktop.
Events Calendar 3.6 // Remove Organizer and Venue Links
add_filter( 'tribe_get_venue', 'remove_link', 100, 1 );
add_filter( 'tribe_get_organizer', 'remove_link', 100, 1 );
function remove_link( $string ) {
return strip_tags( $string );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment