• Dear, Nicolas,
    Hueman has been now updated to version 3.7.15.
    But, it steel didn’t correctly update attribute “alt” in footer images(source view of running system where alt attribute is empty despite that in the form was filled):

    <div
    class="hu-pad group"><div
    class="grid one-half">
    <img
    id="footer-logo"  alt="" data-src="https://doktorb.it/wp-content/uploads/logoPP13tvn-s.png" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img
    id="footer-logo" src="https://doktorb.it/wp-content/uploads/logoPP13tvn-s.png" alt=""></noscript><div
    id="copyright"><p><strong><a
    href='https://doktorB.it'>Andrzej P.Urbański ? 2021. All Rights Reserved.</a></strong></p></div></div

    Source code from foorter.php file:
    <img id="footer-logo" src="<?php echo $_footer_logo_img_src; ?>" alt="<?php get_bloginfo('name'); ?>">
    Source code from general-template.php file:

    function get_bloginfo( $show = '', $filter = 'raw' ) {
    ...
    $output = get_option( 'blogname' );

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter Andrzej P.Urbański

    (@unjayec)

    I have changed alt body in footer.php by constants:
    <img id="footer-logo" src="<?php echo $_footer_logo_img_src; ?>" alt="php get_bloginfo('name');">
    and move it to haeman-child, which immediately remove empty alts:

    <div
    class="hu-pad group"><div
    class="grid one-half">
    <img
    id="footer-logo"  alt="php get_bloginfo('name');" data-src="https://doktorb.it/wp-content/uploads/logoPP13tvn-s.png" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img
    id="footer-logo" src="https://doktorb.it/wp-content/uploads/logoPP13tvn-s.png" alt="php get_bloginfo('name');"></noscript><div
    id="copyright">
Viewing 1 replies (of 1 total)
  • The topic ‘Hueman 3.7.15 – empy alt attribute of img tag in footer’ is closed to new replies.