Hi,
Loving the enfold theme so far, I’ve got a newbie question… How do I change the link of the top left logo on the header to point to something else other than the “root or home”?
Thanks!
Fox
Hi foxvendetta!
Please see here, https://kriesi.at/support/topic/header-logo-url-change/.
Regards,
Elliott
Hi Elliot,
I followed that method and changed the code from:
$logo = "<$headline_type class='logo bg-logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>";
to
$logo = "<$headline_type class='logo bg-logo'><a href='http://mysite.com/alternatelander'>".$logo."$sub</a></$headline_type>";
but for some reason the changes are not reflecting on the theme itself, any idea where it went wrong?
Thanks!
Fox
Hi!
Hmm, I think that should be working. Are you using a caching plugin?
Send us a WordPress login and we’ll take a look.
Cheers!
Elliott
Hi!
I added this to the bottom of your functions.php file.
add_filter( 'avf_logo_link', 'enfold_customization_change_logo_link' );
function enfold_customization_change_logo_link( $link ) {
return 'http://www.resourcegoldmine.com/homepage';
}
It should be working now.
Cheers!
Elliott