Comments 4LeonPyka started the conversationOctober 14, 2022 at 8:31amHiI 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 4LeonPyka repliedOctober 14, 2022 at 8:35amMe agaon, solved it by my own :-D1 Like 4Rechept repliedApril 22, 2023 at 7:44amHey there.How did you do that? 1,877Judith repliedApril 22, 2023 at 8:46amHi 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. Sign in to reply ...
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
Me agaon, solved it by my own :-D
Hey there.
How did you do that?
Hi Rechept,
You can modify this using the filter "nectar_logo_url" from your child theme functions.php file. An example would be:
Thanks.