Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #427769

    Hello,
    as you can see on my site, when you hover with mouse over image in portfolio grid a Title will appear in little box.

    How do I get rid of this?

    #427872

    Hey bahamencz!

    You can 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');

    Cheers!
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.