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
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