Cant change site name
Permalink
I have a site that was previously using the default Plain Yogurt theme. I'm not able to change the name of the website. I added the name of the website which included a telephone number. I would like to remove the telephone number. I can find the sitename section but it does not show the name as shown on the website.
http://www.mrzeros.com
I would like to change the site to exclude the telephone number.
Any help would be greatly appreciated.
http://www.mrzeros.com
I would like to change the site to exclude the telephone number.
Any help would be greatly appreciated.
Login and Go to /dashboard/system/basics/site_name/ and change the name from there
This area does display the site name but it does not include that phone number which is also included in the site name. When I change this field it does not change the name on the site.
What version are you using? Maybe this 'How-to' will help- http://www.concrete5.org/documentation/how-tos/editors/edit-or-remo...
Hello,
I'm using 5.5.2.1
I'm using 5.5.2.1
Hello,
I follow the information below and it tells me I have no global areas created yet.
It's like it buried inside of the database and the site / options do not have control cover this Variable.
Version 5.5.x
If you're using the latest version of concrete5 and one of the default themes (Plain Yogurt, Greek Yogurt, Green Salad), you can put anything you want in that logo/site name space using Global Stacks.
Go to Dashboard > Stacks & Blocks > Stacks. This will open up a Stacks overlay. Under Global Areas, select “Site Name” and then click the block you want to alter (with a new site that has been filled with sample content this would only have one block of Content “My Site”). Select edit from the popover menu, change your site name and click save. Now when you return to the website you will see your new and improved Site Name.
I follow the information below and it tells me I have no global areas created yet.
It's like it buried inside of the database and the site / options do not have control cover this Variable.
Version 5.5.x
If you're using the latest version of concrete5 and one of the default themes (Plain Yogurt, Greek Yogurt, Green Salad), you can put anything you want in that logo/site name space using Global Stacks.
Go to Dashboard > Stacks & Blocks > Stacks. This will open up a Stacks overlay. Under Global Areas, select “Site Name” and then click the block you want to alter (with a new site that has been filled with sample content this would only have one block of Content “My Site”). Select edit from the popover menu, change your site name and click save. Now when you return to the website you will see your new and improved Site Name.
Hi mrzeros,
In this case you should double check your themes header.php file. I think it is static & sites phone number may be merged with in. The header.php located in your themes directory.
Citytech
In this case you should double check your themes header.php file. I think it is static & sites phone number may be merged with in. The header.php located in your themes directory.
Citytech
mrzeros
Just checked your source code,
You have some errors in there, the <body> tag is being declared twice on lines 32 and 44?
And you have this code in your header.php
Just checked your source code,
You have some errors in there, the <body> tag is being declared twice on lines 32 and 44?
And you have this code in your header.php
<div class="logo"> <a href="/"><p>MrZeros 651-489-0207</p></a></div>
Hello,
This is what I have below. It's just printing the variable that shows the site name. I need to figure out where this is stored.
<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>
This is what I have below. It's just printing the variable that shows the site name. I need to figure out where this is stored.
<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>