View Single Post
  #8  
Old 05-01-2009, 06:01 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: Page Title in 4.2

...... from the previous thread

8. MAKE THE NEW TITLES APPEAR
open skin1/customer/service_head.tpl, find
Code:
<title> .......................... </title>
and replace with
Code:
{* Added by CFL Systems for page titles *} {if $main eq "catalog" && $current_category.category eq ""} {assign var="temp_title" value="PUT HERE THE TITLE YOU WANT ON HOME PAGE"} {elseif $main eq "catalog"} {assign var="temp_title" value=$current_category.category_page_title} {elseif $main eq "product"} {assign var="temp_title" value=$product.product_page_title} {elseif $main eq "pages"} {assign var="temp_title" value=$page_data.pages_page_title} {elseif $main eq "manufacturer_products"} {assign var="temp_title" value=$manufacturer.manufacturer_page_title} {else} {assign var="temp_title" value=""} {/if} <title> {if $temp_title ne ""} {$temp_title|escape} {else} {$html_page_title|escape} {/if} </title> {* Added by CFL Systems for page titles *}

9. Run cleanup.php

That's it. Hope it will work for you. It works for me. I tried to keep it clean and easy to follow. If you have trouble installing it I can do it for you. Enjoy!
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote