Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #427420

    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

    #427706

    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

    #428114

    Is there any way of doing this without accessing the php files please?

    #428694

    Hi!

    You could try to delete the image in question and then upload it again?

    Best regards,
    Rikard

    #428775

    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.

    #428808

    Hey!

    You can try using this plugin – https://wordpress.org/plugins/img-title-removal/

    Best regards,
    Yigit

    #428811

    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

    #428820

    I will try the plugin and then let you know.
    Thank you for your continued support.

    #429463

    Hi!

    If you have the time, please update the theme as well. Upgrade it to version 3.1.3. Version 3.0.4 is currently installed.

    Regards,
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.