Tagged: easy slider
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.
Hi Jonas!
Please see Josue’s post here https://kriesi.at/support/topic/how-to-remove-tooltips/#post-224464
Regards,
Yigit
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 ?
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
Thanks,
It works !