Support

Home Forums Event Espresso Premium Calendar Hover feature not showing up

Calendar Hover feature not showing up

Posted: December 2, 2014 at 2:16 am

Viewing 3 reply threads


Toby Staveley

December 2, 2014 at 2:16 am

Hello –
I have the same issue as mentioned in this post-
https://eventespresso.com/topic/calender-hover-feature/

Is it likely to be the same response? Can you help me identify what the conflict might be if so. Here’s a sample page…
http://www.yellowsubmarine.org.uk/our-activities/for-young-people/calendar/

Thanks,
Toby


Josh

  • Support Staff

December 2, 2014 at 6:21 am

Hi Toby,

Before we start troubleshooting a potential theme conflict, can you check and make sure the tooltip option is activated in the calendar’s settings?


Toby Staveley

December 2, 2014 at 6:43 am

I can confirm the tooltip options was (and is) activated…

The description that would show up is presumably taken from the main text within the event – not something like excerpt?


Josh

  • Support Staff

December 2, 2014 at 9:47 am

Hi Toby,

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:

http://justintadlock.com/archives/2009/08/06/how-to-disable-scripts-and-styles

Viewing 3 reply threads

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.

Event Espresso