LooInSpain's post in How to add an additional logo in the header on all pages? Wordpress was marked as the answer
March 21, 2017
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