I'm wondering if it might be somewhere in this mess (from home.tpl)
Quote:
{* $Id: home.tpl,v 1.42 2002/10/22 10:27:05 olga Exp $ *}
{ config_load file="$skin_config" }
<html>
<head>
<title>{$lng.txt_site_title}
{if $main eq "catalog"}
{if $location eq ""} {$lng.txt_subtitle_home}
{else}
{strip}
{section name=position loop=$location start=0 }
{if %position.last% eq "true"} - {$location[position].0|escape}{/if}
{/section}
{/strip}
{/if}
{elseif $main eq "product"}
{if $product.product ne ''} - {$product.product}{/if}
{elseif $main eq "help"}
{$lng.txt_subtitle_help}
{elseif $main eq "cart"}
{$lng.txt_subtitle_cart}
{elseif $main eq "checkout"}
{$lng.txt_subtitle_checkout}
{elseif $main eq "order_message"}
{$lng.txt_subtitle_thankyou}
{/if}
</title>
{ include file="meta.tpl" }
<link rel="stylesheet" href="{$SkinDir}/{#CSSFile#}">
</head>
<body LEFTMARGIN=0 TOPMARGIN=0 RIGHTMARGIN=0 BOTTOMMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
{ include file="rectangle_top.tpl" }
{ include file="head.tpl" }
<table border=0 width=100% cellpadding=0 cellspacing=0 align="center">
<tr>
<td width=156 valign=top>
<center>
[img]{$ImagesDir}/dng_shop.gif[/img]
</center>
{ include file="customer/categories.tpl" }
<center>
[img]{$ImagesDir}/dng_help.gif[/img]
</center>
{ include file="help.tpl" }
</td>
<td></td>
<td valign=top>
{include file="customer/home_main.tpl"}
</td>
<td></td>
<td width=155 valign=top>
<center>
[img]{$ImagesDir}/ding_cart.gif[/img]
</center>
{ include file="customer/menu_cart.tpl" }
{if $login eq "" }
<center>
[img]{$ImagesDir}/ding_login.gif[/img]
</center>
{ include file="auth.tpl" }
{else}
{ include file="authbox.tpl" }
{/if}
<center>
[img]{$ImagesDir}/ding_news.gif[/img]
</center>
{ include file="news.tpl" }
{ include file="poweredby.tpl" }
</td>
</tr>
<tr>
<td></td>
<td></td>
<td>{ include file="copyright.tpl" }</td>
<td></td>
<td></td>
</tr>
</table>
{ include file="rectangle_bottom.tpl" }
</body>
</html>
|