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

    Hi,
    I need to create a page template that has no link back to the home under the header logo.
    What is the best way to do that?

    I am working with an Enfold Child theme, created a new page template and new /includes/helper file for the main-menu section.
    I can’t figure out however where the codes that add the link come from.

    Any help for a clean solution would be welcome.

    Kind regards,
    Kristoff

    #553119

    Hi Kahaa!

    Please add following code to functions.php file in Appearance > Editor

    add_filter('avf_logo_link','av_change_logo_link');
    function av_change_logo_link($link)
    {
        $link = "#";
        return $link;
    }
    

    Cheers!
    Yigit

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