On my portfolio when I hover over an image in the masonry gallery a little pop up bubble shows up. How do I have this not happen?
See sceenshot:
https://www.dropbox.com/s/r3i2rw4bnosxibk/fusa%20extra.png?dl=0
Hi mcraig77!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_tooltip(){
?>
<script>
jQuery(window).load(function(){
jQuery('a').removeAttr('title');
jQuery('img').removeAttr('title');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_tooltip');
Best regards,
Yigit
Thanks!