Okay
  Public Ticket #3146242
Link Logo to Home (/not Blog)
Closed

Comments

  •  4
    LeonPyka started the conversation

    Hi

    I would like to be able to click on the logo to return to the HOME (landing)page - actually it returns to the blog which I do not uise

    I cannot find how to do this. Is it possible to add a URL link to the page logo, so the visitor get directed to the homepage?

    Thanks in advance


  •  4
    LeonPyka replied

    Me agaon, solved it by my own :-D


  •  4
    Rechept replied

    Hey there.

    How did you do that?

  •  1,877
    Judith replied

    Hi Rechept,

    You can modify this using the filter "nectar_logo_url" from your child theme functions.php file. An example would be:

    add_filter('nectar_logo_url','salient_child_logo_url_mod');
    function salient_child_logo_url_mod() {  return 'http://themenectar.com';
    }
    

    Thanks.