Hi Enfold Team,
since last update the mfp-title is lost on our site: https://next.touch2be.de/index.php/s/HcTpSHekDBw8Td7
how do we get this back here?
Thanks for your help!
Tobias
Hey Tobias,
The reason that your titles were not showing is because you had this function removing them:
function remove_title_attr(){
?>
<script>
jQuery(window).load(function(){
jQuery('#wrap_all a').removeAttr('title');
jQuery('#wrap_all img').removeAttr('title');
});
</script>
<?php
}
add_action('wp_footer', 'remove_title_attr');
So I commented this out so you could see.
Best regards,
Mike