Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
541 views
in Q2A Core by
I uploaded a logo to my website (here it is http://unconfessable.com/home/?qa=questions , see top left logo "unconfessable" ). Now, when you click it, it goes to the main root domain directory, but I need it to point to another URL. How can I modify it? Thank you
Q2A version: 1.5.4

1 Answer

+1 vote
by

In order to change this you have to override the logo() function in your themes qa-theme.php. If its not present, create that function andd add your changes in there. The original logo() function looks like this:

function logo() {
  $this->output(
    '<div class="qa-logo">',
    $this->content['logo'],
    '</div>'
  );
}
 
Where $this->content['logo'] is the link and the logo image or Website name printed as an <a> tag.
...