Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #303739

    Hello kriese- Team,

    when i hover the picture (see screenshot) the image name will be displayed. But I want is that the image name does not appear, it is nothing to be displayed. Disable hover function all images.

    #303741
    This reply has been marked as private.
    #303744

    Hi lewiede!

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

    Cheers!
    Yigit

    #303763
    This reply has been marked as private.
Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘picturename not display’ is closed to new replies.