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

    Hi,

    I’m looking for a way to remove the hover text from images. I searched for a solution here, but the suggested codes in the other threads seem not to work. Any solutions?

    #365481

    Hi FadingReality!

    Have you tried adding 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

    #368906

    Yeah that worked, thank you :)

    #368908

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Remove hover text from images’ is closed to new replies.