How to Change Title Link
Permalink
How do you change the Title/Logo Link of your site? I made a splash page, so now when the Title/Logo at the top of each page reroutes to the splash page instead of the home landing page. I tried to change it through the global stacks, but it didn't work. I'm guessing I will have to change some code in the header.php. How do I do this?
This is the code in the header.php:
<div id="page">
<div id="headerSpacer"></div>
<div id="header">
<?php if ($c->isEditMode()) { ?>
<div style="min-height: 80px">
<?php } ?>
<div id="headerNav">
<?php
$a = new Area('Header Nav');
$a->display($c);
?>
</div>
<h1 id="logo"><!--
--><a href="<?php echo DIR_REL?>/"><?php
$block = Block::getByName('My_Site_Name');
if( $block && $block->bID ) $block->display();
else echo SITE;
?></a><!--
--></h1>
Thanks!
This is the code in the header.php:
<div id="page">
<div id="headerSpacer"></div>
<div id="header">
<?php if ($c->isEditMode()) { ?>
<div style="min-height: 80px">
<?php } ?>
<div id="headerNav">
<?php
$a = new Area('Header Nav');
$a->display($c);
?>
</div>
<h1 id="logo"><!--
--><a href="<?php echo DIR_REL?>/"><?php
$block = Block::getByName('My_Site_Name');
if( $block && $block->bID ) $block->display();
else echo SITE;
?></a><!--
--></h1>
Thanks!
DIR_REL to