Skip to content

Instantly share code, notes, and snippets.

@cliffordp
Created December 20, 2017 05:55
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 cliffordp/a07b30dbc08fcce0f00e1f3b57896e64 to your computer and use it in GitHub Desktop.
Save cliffordp/a07b30dbc08fcce0f00e1f3b57896e64 to your computer and use it in GitHub Desktop.
The Events Calendar PRO: Disable all "See All" text and links for recurring events.
<?php
/**
* The Events Calendar PRO: Disable all "See All" text and links for
* recurring events.
*
* @link https://gist.github.com/cliffordp/a07b30dbc08fcce0f00e1f3b57896e64
*/
add_action( 'init', function () {
if ( class_exists( 'Tribe__Events__Pro__Main' ) ) {
Tribe__Events__Pro__Main::instance()->disable_recurring_info_tooltip();
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment