Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created November 22, 2013 14:15
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/7600520 to your computer and use it in GitHub Desktop.
Save ckpicker/7600520 to your computer and use it in GitHub Desktop.
Community Events 3.2 // Adding Custom Javascript to the Event Submission Form
add_action( 'wp_head', 'community_add_javascript' );
function community_add_javascript() {
if (tribe_is_community_edit_event_page()) {
?>
<script type='text/javascript'>
PUT YOUR JAVASCRIPT HERE TO CHECK FOR REQUIRED FIELDS
</script>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment