Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save benklocek/83f763763f9385b5ea9838fcabff151f to your computer and use it in GitHub Desktop.
Save benklocek/83f763763f9385b5ea9838fcabff151f to your computer and use it in GitHub Desktop.
Removes the recurring events option from Community Events
<?php
/* Apply the following snippet in the functions.php file of your theme (without the PHP tag at the top) */
add_action( 'tribe_events_community_form', function() {
$event_form = Tribe__Events__Community__Main::instance()->form;
remove_action( 'tribe_events_date_display', array( $event_form, 'loadRecurrenceData' ) );
}, 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment