cliff
12/20/2017 - 5:55 AM

The Events Calendar PRO: Disable all "See All" text and links for recurring events.

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();
	}
} );