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

    I am using the full-width easy slider on the homepage of my website, and I am finding that when you hover the curser over the image of the slider, the image filename shows up on hover. How can I stop this? The filename cannot show-up on hover.

    Thanks

    #439380

    Hi,

    Try adding this at the very end of your theme / child theme functions.php file:

    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$(".avia-slideshow-inner img").prop("title", "");
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Josue

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