Hey. how can I disable the appearance of a description of the photo while hovering. For all images on site
Hey pddcoms,
Please add this code to the child theme functions.php to remove the link titles:
function avia_footer_scripts_remove_a_titles(){
?>
<script type="text/javascript">
jQuery(document).ready(function(){
setTimeout(function(){ jQuery("a.av-masonry-entry").removeAttr("title"); }, 500);
});
</script>
<?php
}
add_action('wp_footer', 'avia_footer_scripts_remove_a_titles');
Best regards,
Peter
Good. Thaks
Hey!
Great, glad I could help you :)
Best regards,
Peter