Okay
  Public Ticket #3047342
Change logo URL
Closed

Comments

  •  5
    nadesignllc started the conversation

    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.


  •  1,877
    Judith replied

    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:

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

    Cheers

  •  5
    nadesignllc replied

    Excellent, that worked great! Thanks!