How do I link the logo to a url of my choice?
Thanks.
Antonio
Hey abortolotti,
Please try adding this at the very end of your themes / child themes functions.php file:
Edit the $link value to the link you like to add.
add_filter('avf_logo_link','av_change_logo_link');
function av_change_logo_link($link)
{
$link = "http://kriesi.at";
return $link;
}
Best regards,
Vinay