Tagged: devin-docs
I would like to change the link the logo points to. I seems to always point at the homepage, no matter if I add a custom url on the image options or not. My homepage is a splash screen, and I would like the logo to point to a menu screen instead….
Thanks!
Hey ckosheff!
Thank you for using the theme!
You can add something like this on functions.php:
add_filter('avf_logo_link', 'avf_redirect_logo_link');
function avf_redirect_logo_link($link) {
$link = 'http://www.google.com';
return $link;
}
Change the $link value to something else. I hope that helps.
Cheers!
Ismael