Comments 5nadesignllc started the conversationMay 19, 2022 at 2:20pmIs there a simple function that can override the main logo URL? I have a few interior pages where I want the logo to point to a subpage, not the main Wordpress URL. This is not something I want site wide, only on a page by page basis. 1,877Judith repliedMay 19, 2022 at 2:26pmHi There,Thanks for keeping in touch.Please check this out:https://themenectar.ticksy.com//article/6310. You can also 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'; } Cheers 5nadesignllc repliedMay 19, 2022 at 2:29pmExcellent, that worked great! Thanks!1 Like Sign in to reply ...
Is there a simple function that can override the main logo URL? I have a few interior pages where I want the logo to point to a subpage, not the main Wordpress URL. This is not something I want site wide, only on a page by page basis.
Hi There,
Thanks for keeping in touch.
Please check this out:https://themenectar.ticksy.com//article/6310.
You can also modify this using the filter "nectar_logo_url" from your child theme functions.php file. An example would be:
Cheers
Excellent, that worked great! Thanks!