Okay
  Public Ticket #3908438
Logo link
Open

Comments

  •  3
    Katherine started the conversation

    Hi there,

    We have created a subdomain as in the url above and this is the first of a few similar subdomains of the tothesummit.co.uk top domain.

    I would like to link the logos in the subdomain to the home page of the top domain and can't find how to do it - please could you help?  I've been looking in the salient header.php? 


    Hope you can assist!

    Thank you

    kind regards

    Katherine

  •  3,135
    Andrew replied

    Hi Kathrine,

    Thank you for getting back to us.

    Try changing the logo URL as shown in our guide https://themenectar.ticksy.com//article/6310/.

    Try this and let us know how it goes.

    Cheers,

  •  3
    Katherine replied

    Hi Andrew,

    Opted for the js code and it works perfectly!  Thank you so much for your fabulous suppor.


    best wishes

    Katherine

  •  9,153
    Tahir replied

    Hey Again,

    A more reliable method is 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.


    ThemeNectar Support Team