diff --git a/includes/Integrations.php b/includes/Integrations.php index d2d4df476..0dac85879 100644 --- a/includes/Integrations.php +++ b/includes/Integrations.php @@ -18,12 +18,10 @@ class Integrations { public $container = []; private $integrations = [ - 'WeDevs_Dokan' => 'WPUF_Dokan_Integration', - 'WC_Vendors' => 'WPUF_WC_Vendors_Integration', - 'WCMp' => 'WPUF_WCMp_Integration', - 'ACF' => 'WPUF_ACF_Compatibility', - 'Tribe__Events__Main' => 'The_Events_Calendar', - 'Tribe__Events__Pro__Main' => 'The_Events_Calendar', + 'WeDevs_Dokan' => 'WPUF_Dokan_Integration', + 'WC_Vendors' => 'WPUF_WC_Vendors_Integration', + 'WCMp' => 'WPUF_WCMp_Integration', + 'ACF' => 'WPUF_ACF_Compatibility', ]; public function __construct() { diff --git a/includes/Integrations/The_Events_Calendar.php b/includes/Integrations/The_Events_Calendar.php deleted file mode 100644 index 8042d50b4..000000000 --- a/includes/Integrations/The_Events_Calendar.php +++ /dev/null @@ -1,35 +0,0 @@ - '', - 'all_day' => true, - ]; - - $args = wp_parse_args( $args, $default ); - - if ( function_exists( 'tribe_update_event' ) ) { - tribe_update_event( $post_id, $args ); - } - } - } -}