the "concrete5 site"
Permalink 1 user found helpful
do i have to had the "concrete5 site" on the top of my pages???
that's your site name, which you can change by going to /dashboard/settings/
i did already, but the "concrete5 site" still wouldnt go (=.=)'''
In the 'default' theme, I see:
<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>
Simply remove the code and it will be removed permanently.
<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>
Simply remove the code and it will be removed permanently.