All in one calendar month view previews don’t hide

I am using the all in one calendar.
When I am in month view I can hover over items to get a preview of the event details. When I move my mouse away, or hit esc, or click away, no matter what I try, the preview remains.

This is annoying since the preview can cover up other days.

Read More

Does anyone know how to fix this?

Here’s a screenshot.
Note how the previews are all expanded and they don’t go back .

[UPDATE]
If you need to view it you can go to timetolaugh.ca
The issue occurs in Chrome, FF, and IE.
Thanks for the help so far. I’ve inquired on the theme custom script here on the theme support page

enter image description here

Related posts

Leave a Reply

1 comment

  1. Per @Pat_J’s suggestion I have moved this from a comment to a potential answer.

    Check to make sure that all your themes scripts are loading correctly. On page load I got a 404 error for one of the theme’s custom script files (customscript.js) which could be causing the issue with all the other errors from jQuery mentioned by Pat J (I also got the same errors as Pat):

    Failed to load resource: the server responded with a status of 404 (Not Found) http://timetolaugh.ca/wp-content/themes/point/js/customscript.js?ver=3.8
    

    I looked your theme up on wordpress.org and found it. Here is the file for v1.0.6 of the Point theme. Change the version number in the url below if you know you aren’t running the latest version of the theme.

    http://themes.svn.wordpress.org/point/1.0.6/js/customscript.js

    Save the file to your downloads folder (just ctrl+s in your browser) then upload it using an FTP client to your host in the /wp-content/themes/point/js/ folder. Backup any existing version of the customscript.js file that is on the server (might be a permissions issue which should be fixed by uploading)

    LAST RESORT

    If you are sure that it isn’t a problem with page loading then I would build a jQuery script similar to the following:

    jQuery(document).ready(function () {
        jQuery(".ai1ec-event-popup").on('mouseleave', function () {
            jQuery(this).fadeOut(500);
        });
    });
    

    But please try to fix the page loading before patching with a script.