The theme’s plugins.min.js script is throwing this error each time the hover script tries to run: Uncaught TypeError: Cannot read property 'call' of undefined.
One way to fix this would be to deregister the plugins.min.js script for the calendar page. This can be done by finding the handle for the plugins.min.js script and then adding something like this to your child theme’s functions.php file:
add_action( 'wp_print_scripts', 'my_deregister_plugins_min_js', 100 );
function my_deregister_plugins_min_js() {
if ( is_page( 760 ) ) {
wp_deregister_script( 'plugins_script_handle' );
}
}
Again, you’ll need to find the handle in your theme by doing a search, and replace plugins_script_handle in the above with the actual handle. There’s more information on how to find a script handle in this tutorial:
The support post ‘Calendar Hover feature not showing up’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.