Can you help please?
I have saved my images for the slider and successfully updated the titles. However for one of the images it is still finding the title of the image and using it for alternative text even though I have changed the title (actually removed the title from this specific image) by r Click image – Properties – Details and removed the title. Why does it keep appearing? Is it finding the previous versions for some reason?
http://www.identifyhr.co.uk/ third image on the slider – it is picking up the title ‘Business Suit’ from somewhere.
Many thanks,
Jenny
Hey Jenny!
You can add following code to Functions.php file in Appearance > Editor to remove alt text
function add_custom_tooltip(){
?>
<script>
jQuery(window).load(function(){
jQuery('a').removeAttr('title');
jQuery('img').removeAttr('title');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_tooltip');
Cheers!
Yigit
Is there any way of doing this without accessing the php files please?
Hi!
You could try to delete the image in question and then upload it again?
Best regards,
Rikard
I have already tried that about 5 times and changed the title by the method described in my original question.. Will try and access the php files.
Thanks for your time and help.
Hey!
You can try using this plugin – https://wordpress.org/plugins/img-title-removal/
Best regards,
Yigit
Hey!
If you have problems with adding the code to functions.php, we can help you.
You can create us a temporary admin account and can post it here as a private reply.
Best regards,
Günter
I will try the plugin and then let you know.
Thank you for your continued support.