Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1013641

    Hey. how can I disable the appearance of a description of the photo while hovering. For all images on site

    #1013646

    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

    #1013655

    Good. Thaks

    #1013661

    Hey!

    Great, glad I could help you :)

    Best regards,
    Peter

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Image discription on hover’ is closed to new replies.