The "Home" field is set deep within the php files and prolly shouldn't be changed. It may have implications in other functions, like the clean url function. While waiting for xcart to get out a patch..
A small change can be made to the function.get_title.php file in the /include/templater/plugins/ directory and "Home" will turn into your domain name. At line #120 is this:
Code:
// truncate
$title = str_replace(" ", " ", $title);
if (strlen($title) > $config['SEO']['page_title_limit'] && $config['SEO']['page_title_limit'] > 0) {
$title = func_truncate($title, $config['SEO']['page_title_limit']);
}
Insert this after the first line of code:
Code:
// title mod
$title = str_replace("Home", "Your Domain Name", $title);
// end title mod
Thus:
Code:
// truncate
$title = str_replace(" ", " ", $title);
// title mod
$title = str_replace("Home", "Your Domain Name", $title);
// end title mod
if (strlen($title) > $config['SEO']['page_title_limit'] && $config['SEO']['page_title_limit'] > 0) {
$title = func_truncate($title, $config['SEO']['page_title_limit']);
}
You can put whatever text you want in place of "Your Domain Name". e.g. "The Donut Hole - the hole truth and nothing but!" But it will show as part of the title on EVERY page!
===============
The line of code immediately above the "//truncate" comment is this:
Code:
$title = str_replace(array("\n", "\r"), array('', ''), trim(implode(' :: ', $tmp)));
That is what sets the separator between categories and "Home" (which will now have your domain name title!). That ' :: ' has the two colons (whaaat?), with a blank space on each side. You can change it to a hyphen, with or without a space on the sides.