Hi,
I would like to change where clicking on the logo takes me – to the start page (http://sketch-22.com/fi2/), not to the blog.
I’ve set the frontpage settings to it, but it just doesn’t work.
Thanks,
Dražen
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter('avf_logo_link','av_change_logo_url');
function av_change_logo_url($url)
{
return "http://sketch-22.com/fi2/";
}
Cheers!
Josue