Skip to content

Instantly share code, notes, and snippets.

@Asikur22
Created November 22, 2022 08:37
Show Gist options
  • Save Asikur22/1df75896ef6e6a0d96afd93f66821dc3 to your computer and use it in GitHub Desktop.
Save Asikur22/1df75896ef6e6a0d96afd93f66821dc3 to your computer and use it in GitHub Desktop.
The Events Calendar Remove Hook
add_action( 'init', function () {
$trive_events = tribe( 'tec.iCal' );
remove_action( 'tribe_events_single_event_after_the_content', [ $trive_events, 'single_event_links' ] );
$trive_events_pro = Tribe__Events__Pro__Main::instance();
remove_action( 'tribe_events_single_event_meta_primary_section_end', array( $trive_events_pro->single_event_meta, 'additional_fields' ) );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment