Meta Title for Products

Right now, the default meta title for a product is:



[Category Name] [Product Name] [Store Name]



I want it to be:



[Product Name] [Category Name] [Store Name]



Is it possible to set it so it’s that way by default or do I have to go into each product to change it?

If you mean “Page title” then create a csv and import it.

I don’t want to import new page titles. I prefer using the default except I’d like to change the order of the terms. I could do this in my old cart so I was hoping there was an easy way.

I’m not exactly sure how to get it in the order you have it, but I changed my order to:



Store Name - Category Name - Product Name



I did this by modifying:



skins/your-skin/customer/index.tpl



I changed:


```php

{if $page_title}

{$page_title}

{else}

{foreach from=$breadcrumbs item=i name=“bkt”}

{if !$smarty.foreach.bkt.first}{$i.title}{if !$smarty.foreach.bkt.last} :: {/if}{/if}

{/foreach}

{if !$skip_page_title}{if $breadcrumbs|count > 1} - {/if}{$location_data.page_title}{/if}

{/if}

```

To:

```php
{if !$skip_page_title}{if $breadcrumbs|count > 1}{/if}{$location_data.page_title} - {/if}
{foreach from=$breadcrumbs item=i name="bkt"}
{if !$smarty.foreach.bkt.first}{$i.title}{if !$smarty.foreach.bkt.last} :: {/if}{/if}
{/foreach}
```

Maybe that will help you get a step closer.

Brandon

Thanks Brandon! It looks like it’s all tied together in the breadcrumb, so not so simple. I may be able to make some other changes though.