As far as I understand you need to change section
HTML Code:
<title>{strip}
{capture name=title}
{if $config.SEO.page_title_format eq "A"}
{section name=position loop=$location}
{if not %position.first%} :: {/if}
{$location[position].0|strip_tags|escape}
{/section}
{else}
{section name=position loop=$location step=-1}
{if not %position.first%} :: {/if}
{$location[position].0|strip_tags|escape}
{/section}
{/if}
{/capture}
{if $config.SEO.page_title_limit <= 0}
{$smarty.capture.title}
{else}
{$smarty.capture.title|replace:" ":" "|truncate:$config.SEO.page_title_limit|replace:" ":" "}
{/if}
{/strip}</title>
in skin1/customer/home.tpl to
HTML Code:
<title>{strip}
{capture name=title}
{if $config.SEO.page_title_format eq "A"}
{section name=position loop=$location}
{if not %position.first%} :: {/if}
{$location[position].0|strip_tags|escape}
{/section}
{else}
{section name=position loop=$location step=-1}
{if not $config.SEO.page_title_format eq "B"}{if not %position.first%} :: {/if}
{$location[position].0|strip_tags|escape}
{elseif %position.first%}
{$location[position].0|strip_tags|escape}
{/if}
{/section}
{/if}
{/capture}
{if $config.SEO.page_title_limit <= 0}
{$smarty.capture.title}
{else}
{$smarty.capture.title|replace:" ":" "|truncate:$config.SEO.page_title_limit|replace:" ":" "}
{/if}
{/strip}</title>
and execute MySQL query in Patch/UPGRADE section:
Code:
UPDATE xcart_config SET variants='A:Shop name :: Category name :: Product name\r\nD:Product name :: Category name :: Shop name\r\nB:Current page' WHERE category="SEO" AND name="page_title_format"