Title: How to hide hover (mouseover)
Last modified: August 30, 2016

---

# How to hide hover (mouseover)

 *  [rvlak](https://wordpress.org/support/users/rvlak/)
 * (@rvlak)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/how-to-hide-hover-mouseover/)
 * Hi, we would like Easy Footnotes to only display the footnotes at the bottom 
   of the page, not as a hover text upon mouseover. We tried to do this by adding.
   qtip {visibility: hidden;} to CSS, but it did not work. Do you know whether this
   is possible (and how)?
 * [https://wordpress.org/plugins/easy-footnotes/](https://wordpress.org/plugins/easy-footnotes/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Jason Yingling](https://wordpress.org/support/users/yingling017/)
 * (@yingling017)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/how-to-hide-hover-mouseover/#post-6799720)
 * The hover is handled by the jquery qTip plugin. You should be able to dequeue
   the script calling qTip for the plugin using wp_dequeue_script(‘qtipcall’) in
   your themes functions.php.
 * You may also want to dequeue the qTip jquery plugin as it would no longer be 
   needed and imagesLoaded. Which would be:
 *  wp_dequeue_script(‘qtipcall’)
    wp_dequeue_script(‘imagesloaded’)
 * I’m not somewhere I can test this out at the moment, but that should be possible.
   You can find more on the dequeue_script function here [https://codex.wordpress.org/Function_Reference/wp_dequeue_script](https://codex.wordpress.org/Function_Reference/wp_dequeue_script)
 *  [vebmayster](https://wordpress.org/support/users/vebmayster/)
 * (@vebmayster)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/how-to-hide-hover-mouseover/#post-6799975)
 * Is there a way to turn off the hover text (and just keep the footnotes on the
   bottom of the page ) _without_ disabling the hover text feature for the entire
   theme? I want one of my plugins to use it, but not footnotes. Something I can
   modify within the plug-in directory itself? Thanks!
 *  Plugin Author [Jason Yingling](https://wordpress.org/support/users/yingling017/)
 * (@yingling017)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/how-to-hide-hover-mouseover/#post-6799976)
 * Dequeing the ‘qtipcall’ script should take care of that for you with:
 * `wp_dequeue_script('qtipcall')`
 * That script only makes the qTip call that easy footnotes uses. The full qTip 
   jQuery plugin is enqueued as just ‘qtip’.
 * There was a typo in my message above. Dequeueing the entire qTip plugin would
   be:
 *     ```
       wp_dequeue_script('qtip')
       wp_dequeue_script('imagesloaded')
       ```
   
 * Just dequeueing ‘qtipcall’ should get rid of the hover for you, but leave it 
   for the rest of your theme.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘How to hide hover (mouseover)’ is closed to new replies.

 * ![](https://ps.w.org/easy-footnotes/assets/icon-256x256.png?rev=2355746)
 * [Easy Footnotes](https://wordpress.org/plugins/easy-footnotes/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/easy-footnotes/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/easy-footnotes/)
 * [Active Topics](https://wordpress.org/support/plugin/easy-footnotes/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/easy-footnotes/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/easy-footnotes/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)
 * [hover](https://wordpress.org/support/topic-tag/hover/)

 * 3 replies
 * 3 participants
 * Last reply from: [Jason Yingling](https://wordpress.org/support/users/yingling017/)
 * Last activity: [9 years, 10 months ago](https://wordpress.org/support/topic/how-to-hide-hover-mouseover/#post-6799976)
 * Status: not resolved