Skip to content

Instantly share code, notes, and snippets.

@joshfeck
Created December 20, 2016 17:37
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 joshfeck/e2a4bae79dbf89d56b03b8895ddeeef1 to your computer and use it in GitHub Desktop.
Save joshfeck/e2a4bae79dbf89d56b03b8895ddeeef1 to your computer and use it in GitHub Desktop.
load EE4 calendar scripts to home page
<?php
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file
add_action( 'template_redirect', 'my_add_calendar_scripts_to_home_page' );
function my_add_calendar_scripts_to_home_page() {
if ( class_exists( 'EED_Espresso_Calendar' ) && is_front_page() ) {
global $is_espresso_calendar;
$is_espresso_calendar = TRUE;
add_action( 'wp_enqueue_scripts', array( EED_Espresso_Calendar::instance(), 'calendar_scripts' ) );
if ( EED_Espresso_Calendar::instance()->config()->tooltip->show ) {
add_filter('FHEE_load_qtip', '__return_true' );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment