Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created October 2, 2013 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckpicker/6794890 to your computer and use it in GitHub Desktop.
Save ckpicker/6794890 to your computer and use it in GitHub Desktop.
Community 3.1 Add-on // Hide Categories on Event Submission Page Add this code to your theme's functions.php file
add_action( 'wp_head', 'community_add_css' );
function community_add_css() {
if (tribe_is_community_edit_event_page()) {
?>
<style>
#event_taxonomy {display:none !important;}
</style>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment