Jump to content

LooInSpain

New Members
  • Posts

    6
  • Joined

  • Last visited

Community Answers

  1. LooInSpain's post in How to add an additional logo in the header on all pages? Wordpress was marked as the answer   
    On line 165 instead of:
    if ( is_front_page() ){ echo '<h1><a href="'; echo home_url(); echo '"><img src="' . $logo_attachment . '" alt="' . $alt_text . '"/></a> <a href="http://www.sufra.lt" target="_blank"><img src="http://www.euroweldgroup.lt/wp-content/uploads/2016/11/sufra_logo1.png" alt="Sufra"/></a> <a href="http://Belfingroup.com" target="_blank"><img src="http://www.euroweldgroup.lt/wp-content/uploads/2016/11/belfingroup_logo.png" alt="Belfingroup"/></a> </h1>'; }else{ echo '<a href="'; echo home_url(); echo '"><img src="' . $logo_attachment . '" alt="' . $alt_text . '"/></a>'; } change to this:
    echo '<h1><a href="'; echo home_url(); echo '"><img src="' . $logo_attachment . '" alt="' . $alt_text . '"/></a> <a href="http://www.sufra.lt" target="_blank"><img src="http://www.euroweldgroup.lt/wp-content/uploads/2016/11/sufra_logo1.png" alt="Sufra"/></a> <a href="http://Belfingroup.com" target="_blank"><img src="http://www.euroweldgroup.lt/wp-content/uploads/2016/11/belfingroup_logo.png" alt="Belfingroup"/></a> </h1>'; So essentially remove the if (is_front_page()) { and the else
    That should fix your problem
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.