Hi Laura,
Here’s a hack that should get this working for you.
1. First create a folder labeled ‘js’ in your theme.
2. Then create a file ‘mini-cal-hack.js’ and put this code in it:
jQuery(document).ready(function($) {
$('#calendar_wrap a.next-month').trigger('click');
setTimeout(function(){ $('#calendar_wrap a.prev-month').trigger('click'); }, 1000);
});
3. Then place this code in your theme’s functions.php file to load it:
/*-----------------------------------------------------------------------------------*/
/* Add Menu Page Script
/*-----------------------------------------------------------------------------------*/
add_action("wp_enqueue_scripts", "mini_cal_hack");
function mini_cal_hack() {
wp_enqueue_script('mini-cal-hack', get_stylesheet_directory_uri() . '/js/mini-cal-hack.js', array('jquery'), '1.0', true);
}
Let me know whether or not that works for you.
Thanks,
Jonah