Hey Annemarie,
Please add following code to Functions.php file in Appearance > Editor
function remove_title_attr(){
?>
<script>
jQuery(window).load(function(){
jQuery('.avia-slideshow a').removeAttr('title');
jQuery('.avia-slideshow img').removeAttr('title');
});
</script>
<?php
}
add_action('wp_footer', 'remove_title_attr');
Best regards,
Yigit
That worked perfectly, thank you Yigit.
NOTE FOR OTHER READERS you might want to clear your cache if it doesn’t work first time – that’s what we had to do.