I'm using the Adaptive Theme and the Corolla and Foo subthemes. I need my logo link which usually goes to the home page of the site to go to another url altogether. I've looked in the templates (template.php and page.tpl.php) in the Corolla and Adaptive theme directories and all I can find is this code:
<?php if ($site_logo): ?>
<div id="logo">
<?php print $site_logo; ?>
</div>
<?php endif; ?>
But I expected to find something with <front>
in it. I tried wrapping:
<?php print $site_logo; ?> with a link, but to no avail.
I also tried taking out $site_logo
after the word "print" but also to no avail. So what can I do to accomplish this?
J
The codes you are looking are in
function adaptivetheme_preprocess_page(&$vars)
line 119 of ../themes/adapthivetheme/at_core/inc/preprocess.inc file.So you should override the $site_logo variable in your theme template.php similar function.