• First at all, many thanks to the author. I looked for before writing here… I meet a problem with Wordpess logo in footer: we see “Propulsé par” (= “Powered by”) but WordPress logo is here but not visible… In addition, I am not able to insert social links such as facebook, dailymotion, etc. They are placed underneath one another. So I removed them until I find solution. (it does not appear in the header neither, yet it seems to me that I adjusted facebook link in the header at the beginning of the project but I don’t remember when it disappeared… Can anyone help me? (Firefox 57.0.2 Windows10)

    • This topic was modified 6 years, 4 months ago by cathlig.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello Cathlig

    Try following in your child theme functions.php

    //*****************************************************
    // Change footer-colophon 
    //*****************************************************
    
    add_filter('tc_credits_display', 'my_custom_credits', 20);
    function my_custom_credits(){ 
        $credits = 'your credits text';
        $newline_credits = '<span class="tc-wp-powered-text"></span><a class="icon-wordpress" target="_blank" href="https://wordpress.org" title="Powered by WordPress"></a> <i>Customizr</i> by <a href="http://www.presscustomizr.com/">Press Customizr</a> - Produced by ...';
    return '
    
    <div class="span6 credits">
        <p> &copy; '.esc_attr( date( 'Y' ) ).' <a href="'.esc_url( home_url() ).'" title="'.esc_attr(get_bloginfo()).'" rel="bookmark">'.esc_attr(get_bloginfo()).'</a> '.($credits ? $credits : 'Designed by <a href="http://www.presscustomizr.com/">Press Customizr</a>').' '.($newline_credits ? '<br />'.$newline_credits.' ' : '').'</p>		
    </div>';
    }

    Hi,

    Please check that your font awesome script is enabled.

    Go to Appearance -> Customize -> Advanced options -> Front-end Icons (Font Awesome)

    Thank you

    Thread Starter cathlig

    (@cathlig)

    Thanks Denzel Chia, I already checked it but it is not solution.
    Thanks soykatorce, may be I will try it but I’m not yet at ease with such manipulation…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Trouble in footer’ is closed to new replies.