Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #326277

    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

    #326540

    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

    #326813

    Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Weird mouseover hover bubble in masonry gallery’ is closed to new replies.