Skip to content

Instantly share code, notes, and snippets.

@jazbek
Created October 30, 2013 21:29
Show Gist options
  • Select an option

  • Save jazbek/7240619 to your computer and use it in GitHub Desktop.

Select an option

Save jazbek/7240619 to your computer and use it in GitHub Desktop.
Fix datepicker for satellite7 theme
<?php
add_action('admin_print_scripts', 'fix_satellite7_datepicker', 21);
function fix_satellite7_datepicker() {
global $typenow;
if ( class_exists('TribeEvents') && $typenow == TribeEvents::POSTTYPE ) {
?>
<script type="text/javascript">
jQuery(document).ready(function($){
$('.datepicker').datepicker('destroy');
});
</script>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment