Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created September 23, 2013 20:56
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/6676847 to your computer and use it in GitHub Desktop.
Save ckpicker/6676847 to your computer and use it in GitHub Desktop.
Community Events Add-on // Hide Categories
add_action( 'wp_footer', 'community_add_javascript' );
function community_add_javascript() {
if (tribe_is_community_edit_event_page()) {
?>
<script type="text/javascript">
//Hide categories
jQuery('.tribe-community-event-details:first').hide();
</script>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment