Hi guys,
how do I change the link of the main Logo in the header?
I already found this thread but I didn’t work for me.
Any suggestions?
Cheers,
Brad
Hi bradbranson!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_logo_link','av_change_logo_link');
function av_change_logo_link($link)
{
$link = "http://kriesi.at";
return $link;
}
Cheers!
Yigit
Worked like a charm. Thank You. (: