Hello kriese- Team,
when i hover the picture (see screenshot) the image name will be displayed. But I want is that the image name does not appear, it is nothing to be displayed. Disable hover function all images.
Hi lewiede!
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