• I’m using the Events Calendar plugin but would like to disable the tooltip popup showing in the calendar widget.

    Anyone know how to do this without destroying the plugin? ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • This wont destroy the plugin, but it does leave some work to be done.
    Open ec_js.class.php and delete lines 112-122

    ecd.jq('#events-calendar-<?php echo $d;?>').tooltip({
            track: true,
            delay: 0,
            showURL: false,
            opacity: 1,
            fixPNG: true,
            showBody: " - ",
            // extraClass: "pretty fancy",
            top: -15,
            left: 10
          });

    That gets rid of the tooltip, but there is still a hover effect after that, probably another javascript function to be rid of..

    actually, that was bad advice. You could just delete the variable $output on line 104.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Events Calendar] how to disable the tooltip’ is closed to new replies.