Skip to content

Instantly share code, notes, and snippets.

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 quasel/1300e787ad4807853cc4617784140d34 to your computer and use it in GitHub Desktop.
Save quasel/1300e787ad4807853cc4617784140d34 to your computer and use it in GitHub Desktop.
The Events Calendar Pro - Hide Mini Calendar Event List Until Calendar Date is Clicked
/*
* The Events Calendar Pro - Hide Mini Calendar Event List Until Calendar Date is Clicked
* TEC PRO @3.11.1
*/
add_action( 'wp_footer', 'tribe_hide_mini_calendar_list_until_clicked', 50 );
function tribe_hide_mini_calendar_list_until_clicked() {
?>
<script>
var $ = jQuery.noConflict();
jQuery(function($) {
$( ".tribe-mini-calendar-list-wrapper" ).fadeOut();
$( ".tribe-mini-calendar-grid-wrapper" ).on( "click", function() {
$( ".tribe-mini-calendar-list-wrapper" ).fadeIn();
});
});
</script>
<?php
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment