Tagged: logo
I searched and tried out a couple of things, but I don’t mange to change the logo on a specific page. I hope you can help me out here. I want to add a custom logo to one specific page. All other pages should have the default logo.
Open up wp-contentthemesenfoldframeworkphpfunction-set-avia-frontend.php and replace:
$logo = "<img src=".$logo." alt='' />";
with
if(is_page('25')) $logo = 'http://mywebsite.com/second_logo.jpg';
$logo = "<img src=".$logo." alt='' />";
Instead of 25 insert your page id and replace the http://mywebsite.com/second_logo.jpg url with a valid url to your other logo image.