Tagged: , ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #212990
    #213095

    Hi m!

    You can add something like this on functions.php:

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

    Change the $link value.

    Cheers!
    Ismael

    #213102

    When the theme is updated, will it be overwritten?

    #213599

    Hi!

    It will, however you can prevent that by using a Child theme.

    Best regards,
    Josue

    #376713

    @Ismael many thanks for the instructions (works perfectly for me)
    Caiser

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to have the logo link to another url, rather than default home page’ is closed to new replies.