Skip to content

Instantly share code, notes, and snippets.

@rafsuntaskin
Forked from ckpicker/gist:7682707
Last active February 8, 2019 20:26
Show Gist options
  • Save rafsuntaskin/e8b677d53997e50ecc64c666b9bd62ff to your computer and use it in GitHub Desktop.
Save rafsuntaskin/e8b677d53997e50ecc64c666b9bd62ff to your computer and use it in GitHub Desktop.
Community Events 3.2 // Hide recurrence on the submission form
add_action( 'wp_head', 'community_add_css' );
function community_add_css() {
if (tribe_is_community_edit_event_page() || tribe_is_community_my_events_page()) {
?>
<style>
.recurrence-row {display:none !important;}
</style>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment