Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #268526

    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

    • This topic was modified 9 years, 10 months ago by bur2000.
    #268546

    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

    #268549

    Great, it works, thanks!

    #268551

    Hey!

    You are welcome! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Logo Link’ is closed to new replies.