Skip to content

Instantly share code, notes, and snippets.

@GeoffEW
Created May 12, 2017 23:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GeoffEW/89a374aa190422f7fc1f56eb14e27a67 to your computer and use it in GitHub Desktop.
Save GeoffEW/89a374aa190422f7fc1f56eb14e27a67 to your computer and use it in GitHub Desktop.
Tribe, remove recurrence from new event and edit event screens
<?php
/* Tribe, remove recurrence from new event and edit event screens */
function tribe_remove_recurrence ( ) {
remove_action( 'tribe_events_date_display', array( 'Tribe__Events__Pro__Recurrence__Meta', 'loadRecurrenceData' ) );
}
add_action( 'admin_init', 'tribe_remove_recurrence' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment