• After upgrading to WP 3.0 and the newest version of Events Calendar, the box that appears with the event details when you mouseover the event no longer works. So website visitors are left without the event location, times, and detail since the mouseover no longer displays. Does anyone know how to fix this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter dhobeika

    (@dhobeika)

    OK after doing some research, I found someone who had found a fix to the tooltip issue. This is the fix they found and it works:


    I was able to fix this on a site I was working on by changing code
    in the ec_js.class.php file. I replaced lines 587 – 599 with this code
    from a previous functioning version of the plugin:

    // <![CDATA[
    //jQuery.noConflict();
    //(function($) {
        ecd.jq(document).ready(function() {
            ecd.jq('#events-calendar-list-<?php echo $id;?>')
                .attr('title', '<?php echo addslashes($output);?>')
                .mouseover(function() {
                    ecd.jq(this).css('cursor', 'pointer');
                    });
            ecd.jq('#events-calendar-list-<?php echo $e->id;?>').tooltip({
            delay:0,
            track:true
          });
        });
    //})(jQuery);
    //]]>

    dhobeika,
    Many thanks. I did the same and got mine working as well.

    I did the same (and BTW it’s the fix applied in 6.6.3) but did NOT GET any different behaviour: no mouse-over tooltip whatsoever!

    Using EC6.6.4 with WP3.0.1 on Firefox/Chrome/IE with same result

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Events Calendar] Mouseovers’ is closed to new replies.