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

    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!

    #322552

    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

    #327653

    THANK YOU! I ADDED it to Quick CSS and it worked.

    #327661

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Image Names Pop-Up’ is closed to new replies.