Tagged: header logo
Enfold is running properly in http://website.com/blog folder. Clicking logo on top left takes me to http://website.com/blog folder which is correct behavior. How do I change code so clicking logo takes me back to http://website.com ?
-Mark
Hey Mark,
Try adding this code to the end of your functions.php file in Appearance > Editor:
add_filter('avf_logo_link','av_change_logo_link');
function av_change_logo_link($link)
{
$link = "https://www.website.com/";
return $link;
}
Best regards,
Mike
Perfect, Thanks.