mdss
♖♘♗♕♔♗♘♖
- Регистрация
- 20 Фев 2007
- Сообщения
- 1.152
- Реакции
- 710
по второму home.tpl.html
мне тут,- но что править? выдает ошибку[/QUOTE]
видимо удаляешь лишний кусок
У тебя есть примерно такой код в этом шаблоне
PHP:
<table width="100%" border="0" cellpadding="5">
{section name=i loop=$root_categories}
{if $smarty.section.i.index is div by 2}<tr>{/if}
<td width="1%" align="center" valign="top">
{if $root_categories[i][3] ne ""}<a href="index.php?categoryID={$root_categories[i][0]}"><img border=0 src="products_pictures/{$root_categories[i][3]}" alt="{$root_categories[i][1]|replace:'"':'"'}">{/if}
</td>
<td width="49%" valign="top">
<a href="index.php?categoryID={$root_categories[i][0]}" class="cat">{$root_categories[i][1]}</a> <font class="olive">({$root_categories[i][2]})</font><br>
{* show sub categories *}
{assign var="tmp" value=0}
{section name=j loop=$root_categories_subs}
{if $root_categories_subs[j][3] == $root_categories[i][0]}
{if $tmp == 1}<font class="olive">|</font>
{else}
{assign var="tmp" value=1}
{/if}
<a href="index.php?categoryID={$root_categories_subs[j][0]}" class=standard>{$root_categories_subs[j][1]}</a>
{/if}
{/section}
</td>
{if ($smarty.section.i.index+1) is div by 2}</tr>{/if}
{/section}
</table>