Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #582636

    Hi

    I followed these instructions here: http://kriesi.at/documentation/enfold/remove-image-titles-that-show-up-when-you-hover-on-images/

    It worked but, this is creating a conflict with a google translator plugin and the flags for such plugin disappear after adding this code.
    If you reload the page you can see the flags at the top right and then disappear.

    Please check the page in PVT

    Thank you

    #584051

    Hi sitesme!

    Please change the code to following one

    function remove_title_attr(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.flex_column a').removeAttr('title');
    jQuery('.flex_column img').removeAttr('title');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');

    Cheers!
    Yigit

    #584062

    Thank you Yigit, that solved my problem :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Remove image titles hover on images conflict’ is closed to new replies.