Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created November 11, 2013 15:59
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/7415507 to your computer and use it in GitHub Desktop.
Save ckpicker/7415507 to your computer and use it in GitHub Desktop.
Community Events Add-on 3.2 // Show only one month in date picker
add_action( 'wp_footer', 'community_add_javascript', 100 );
function community_add_javascript() {
if (tribe_is_community_edit_event_page()) {
?>
<script type="text/javascript">
jQuery(document).ready(function($) {
jQuery('#EventStartDate, #EventEndDate').datepicker( "option", "numberOfMonths", 1 );
});
</script>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment