Without it changing other aspects of my cart?
I tried adding it directly into the "Company name" field, but then it appears on the navigation tree and probably other places that I didn't notice. I want to add a slogan after the domain name so it looks like this:
domain.com - slogan
and when viewing the product pages or any other Xcart page that places text after the domain I want the slogan to be in there right after the domain.
I tried playing with this code in home.tpl:
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}
{else}
{section name=position loop=$location step=-1}
{$location[position].0|escape}
{if not %position.last%} :: {/if}
{/section}
{/if}
</TITLE>
but it never would put it in the right spot or it would appear twice. How do I get my slogan to appear after the domain name, but still include the default category and product title code after the slogan on those pages, while only the domain name and slogan appear on home.php?
Can somebody please help?
Thanks!