Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #268628

    Is it possible to remove the auto alt text on images in Easy slider?

    I Know it is possible to change them in the Media Gallery, but I would like to remove them completely, if its easy.

    #268778

    Hi Jonas!

    Please see Josue’s post here https://kriesi.at/support/topic/how-to-remove-tooltips/#post-224464

    Regards,
    Yigit

    #268793

    It dosnet work, I tried to put in:

    jQuery(document).ready(function($){
    jQuery(‘img’).removeAttr(‘title’);
    });

    In the end of avia.js

    Any other suggestions I could try ?

    #268838

    Hi,

    Try adding this at the end of the theme functions.php file:

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery(‘img’).removeAttr(‘title alt’);
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Josue

    #269047

    Thanks,

    It works !

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Easy slider, remove auto alt text on images’ is closed to new replies.