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
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
Hallo Yigit
Thank you for your quick reply, and it works!
All the best
Erik