For 4.1.3 it worked fine to just combine the instructions in the previous posts...
Edit skin1/customer/home.tpl and replace everything between the <TITLE> tags with the following:
Code:
<TITLE>
{if $config.SEO.page_title_format eq "A"}
{section name=position loop=$location}
{$location[position].0|escape}
{if not %position.last%} :: {/if}
{/section}
{elseif $config.SEO.page_title_format eq "D"}
{section name=position loop=$location step=-1}
{$location[position].0|escape}
{if not %position.last%} :: {/if}
{/section}
{elseif $config.SEO.page_title_format eq "G"}
{section name=position loop=$location}
{if %position.last%}{$location[position].0|escape}{/if}
{/section}
{/if}
</TITLE>
AND THEN
Add an option "G: Current Page Only" to cell titled "page_title_format" in xcart_config table (around page 5) using phpMyAdmin, and select this option G from backend Admin. For graphic detail on how phpMyadmin will look- see the
illustrations on this page.