Hi
I followed these instructions here: http://kriesi.at/documentation/enfold/remove-image-titles-that-show-up-when-you-hover-on-images/
It worked but, this is creating a conflict with a google translator plugin and the flags for such plugin disappear after adding this code.
If you reload the page you can see the flags at the top right and then disappear.
Please check the page in PVT
Thank you
Hi sitesme!
Please change the code to following one
function remove_title_attr(){
?>
<script>
jQuery(window).load(function(){
jQuery('.flex_column a').removeAttr('title');
jQuery('.flex_column img').removeAttr('title');
});
</script>
<?php
}
add_action('wp_footer', 'remove_title_attr');
Cheers!
Yigit
Thank you Yigit, that solved my problem :)