Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #249746

    I would like to change the link the logo points to. I seems to always point at the homepage, no matter if I add a custom url on the image options or not. My homepage is a splash screen, and I would like the logo to point to a menu screen instead….
    Thanks!

    #250079

    Hey ckosheff!

    Thank you for using the theme!

    You can add something like this on functions.php:

    add_filter('avf_logo_link', 'avf_redirect_logo_link');
    
    function avf_redirect_logo_link($link) {
    	$link = 'http://www.google.com';
    	return $link;
    }

    Change the $link value to something else. I hope that helps.

    Cheers!
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.