I have added the calendar month view to the home page using the following:
In template file:
tribe_show_month( array( 'eventDate' => date_i18n( 'Y-m-01' ), 'tribe-events/month/content' ) );
In functions.php:
add_action('wp_enqueue_scripts', 'enqueue_month_view_scripts');
function enqueue_month_view_scripts() {
if ( is_front_page() ) {
Tribe_Template_Factory::asset_package('ajax-calendar');
Tribe_Template_Factory::asset_package('events-css');
}
}
This works nicely apart from the tooltips do not pop up. What css/js am I not loading in functions.php?