IE Title

Does any one now how to change the IE title bar from the standard:



Site Name - Main Cat :: Sub Cat :: Product Title



to just,



Site Name - Product Title



I assume it’s in index.tpl between , but i can’t figure it out.



Cheers.

[quote name=‘baballuci’]I assume it’s in index.tpl between , but i can’t figure it out.[/QUOTE]It is in index.tpl. Find this line:



[html]{if $smarty.foreach.bkt.index==1} - {/if}{if !$smarty.foreach.bkt.first}{$i.title|escape}{if !$smarty.foreach.bkt.last} :: {/if}{/if}[/html]



Change it to:



[html]{if $smarty.foreach.bkt.index==1} - {/if}{if $smarty.foreach.bkt.last}{$i.title|escape}{/if}[/html]

Cheers worked perfect.