FORUMS CLOSED DUE TO SPAM. YOU STILL CAN ADD POST!

Renaming the "Home" page

Feed 4 posts, 2 voices

Avatar
2 posts

I want to rename the title of the button that shows Home. How can I do this?

 
Avatar
180 posts

Go to Layout section, edit Normal layout. Find Home link and correct it.

 
Avatar
2 posts

No luck. This is the code:

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml”>
<head> <title><?php echo $this->title(); ?></title>

<meta http-equiv=“content-type” content=“application/xhtml+xml; charset=utf-8” /> <meta name=“robots” content=“index, follow” /> <meta name=“description” content=”<?php echo ($this->description() != ‘’) ? $this->description() : ‘Default description goes here’; ?>” /> <meta name=“keywords” content=”<?php echo ($this->keywords() != ‘’) ? $this->keywords() : ‘default, keywords, here’; ?>” /> <meta name=“author” content=“Author Name” /> <link rel=“favourites icon” href=”<?php echo URL_PUBLIC; ?>favicon.ico” /> <link rel=“stylesheet” href=”<?php echo URL_PUBLIC; ?>public/themes/normal/screen.css” media=“screen” type=“text/css” /> <link rel=“stylesheet” href=”<?php echo URL_PUBLIC; ?>public/themes/normal/print.css” media=“print” type=“text/css” /> <link rel=“alternate” type=“application/rss+xml” title=“Frog Default RSS Feed” href=”<?php echo URL_PUBLIC.((USE_MOD_REWRITE)?’‘:’/?’); ?>rss.xml” />

</head>
<body>
<div id=“page”>
<?php $this->includeSnippet(‘header’); ?>
<div id=“content”>

<h2><?php echo $this->title(); ?></h2> <?php echo $this->content(); ?> <?php if ($this->hasContent(‘extended’)) echo $this->content(‘extended’); ?>

</div> <!— end #content —>
<div id=“sidebar”>

<?php echo $this->content(‘sidebar’, true); ?>

</div> <!— end #sidebar —>
<?php $this->includeSnippet(‘footer’); ?>
</div> <!— end #page —>
</body>
</html>

 
Avatar
180 posts

Go to Snippet section and edit header snippet.

Find link tag with Home and change it.

 
Avatar
2 posts

Done. Thanks.