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

    Hello,

    I just noticed that if I hover over the images in the full-width easy slider the image name appears. I’d like to remove this feature. Can you help? Thanks,

    Liz

    #367445

    Hi 1lizcollins!

    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

    #367495

    Thank you!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Remove tool tip for full width easy slider’ is closed to new replies.