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

    Hallo.

    I would like to be able to remove the image title when using the Fullwidth Easy Slider.

    Now, the image title shows when the mouse is over the image.

    Thank you

    Erik

    #452614

    Hey erikatzen!

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

    Regards,
    Yigit

    #452796

    Hallo Yigit

    Thank you for your quick reply, and it works!

    All the best

    Erik

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Fullwidth Easy Slider – How to remove the image title?’ is closed to new replies.