Hello,
as you can see on my site, when you hover with mouse over image in portfolio grid a Title will appear in little box.
How do I get rid of this?
Hey bahamencz!
You can 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