Tagged: , ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #374289
    #374339

    Hey annebetts!

    Try adding this to the bottom of your functions.php file.

    add_filter( 'avf_logo_link', 'enfold_customization_logo_link' );
    function enfold_customization_logo_link( $link ){
    	if ( is_front_page() || is_home() ) { $link = "#test"; }
    	return $link;
    }

    And change “#test” to whatever you want to link it to.

    Regards,
    Elliott

    #374383

    Works perfectly! Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Logo – scroll to top on click’ is closed to new replies.