Quote:
Originally Posted by DogByteMan
Does the Meta Tags for the category tranfer to the product pages???
Is there a way to change a product page's meta tags other than change them every time you create an HTML catalog?
Thanks,
Greg
|
change the bit in the home.tpl to:
Code:
<title>
{if $main eq "catalog"}
{if $location eq ""}{$config.Company.meta_title}
{else}{* funkydunk metamod 2003 *}
{if $current_category.page_title eq ""}
{$config.Company.meta_title}
{else}
{$current_category.page_title}
{/if}
{* end of metamod *}{/if}
{elseif $main eq "product"}{if $product.product ne ''}{$product.product} - {if $current_category.page_title eq ""}
{$config.Company.meta_title}
{else}
{$current_category.page_title}
{/if}{/if}
{elseif $main eq "help"}{$config.Company.meta_title}{$lng.txt_subtitle_help}
{elseif $main eq "cart"}{$config.Company.meta_title}{$lng.txt_subtitle_cart}
{elseif $main eq "checkout"}{$config.Company.meta_title}{$lng.txt_subtitle_checkout}
{elseif $main eq "order_message"}{$config.Company.meta_title}{$lng.txt_subtitle_thankyou}{/if}
</title>