Remove Domain Name from Page
Permalink
I'm using one of the Earthtones themes for my pages and I'd like to know how to change the code to remove the domain name from the top of my page. The code looks like this:
<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>
What do I need to change to remove the domain name?
I am running 5.3.3.1 but do not have the global scrapbook spoken about in other posts.
Thanks.
<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>
What do I need to change to remove the domain name?
I am running 5.3.3.1 but do not have the global scrapbook spoken about in other posts.
Thanks.
Thanks!!
One other question - what if I eventually want to add my company logo to the header - would I still remove that part or would I want to change it to something else to load a logo image?
Thanks for the help!!
One other question - what if I eventually want to add my company logo to the header - would I still remove that part or would I want to change it to something else to load a logo image?
Thanks for the help!!
Anyone have an answer to my question above about putting in logo image instead of Site Name? I removed what was suggested above and it worked great and now I'm thinking about replacing that code with a logo image - what would I need to do in that case?
--><a href="<?php echo DIR_REL?>/"><?php
$block = Block::getByName('My_Site_Name');
if( $block && $block->bID ) $block->display();
else echo SITE;
?></a>
remove that