Hello! On a website I designed when you roll over the images a name pos up. This does not happen on the other sites I designed with Enfold. See info in private content. THANK YOU!
Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){
?>
<script>
(function($){
$(window).load(function() {
$("img").attr('title','');
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
Regards,
Josue
THANK YOU! I ADDED it to Quick CSS and it worked.
You are welcome, glad to help :)
Regards,
Josue