Hi there,
How can i make all the logos of the site (including transparent section too) to direct to a specific link other than home page?
Hi hisari ;
you can find the answer here :
https://kriesi.at/support/topic/custom-link-for-logo/
Hey!
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;
}
@begrafiks thanks for the help :)
Best regards,
Yigit