Tagged: full width easy slider, Tool Tip
Hello,
I just noticed that if I hover over the images in the full-width easy slider the image name appears. I’d like to remove this feature. Can you help? Thanks,
Liz
Hi 1lizcollins!
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
Thank you!!