Hey,
I must change the Link of the Logo in the Header. I saw in older posts this on helper-main-menu.php
echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, $addition, ‘strong’, true);
How i can change the Link? How must be the line above?
thx for help
Hey bur2000!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_logo_link', 'avf_logo_new_link');
function avf_logo_new_link($link) {
$link = "http://kriesi.at";
return $link;
}
and change the link to your new link
Cheers!
Yigit
Great, it works, thanks!