Dzięki za szybką odpowiedź. Mógłbyś powiedzieć, co trzeba w niej poprawić?
{include file=$tpl_dir./breadcrumb.tpl}
{include file=$tpl_dir./errors.tpl}
{if $category->id AND $category->active}
{include file=$tpl_dir./binding_top.tpl}
<h2 class="category_title">{strip}
{$category->name|escape:'htmlall':'UTF-8'}
<span>
{if $nb_products == 0}{l s=''}
{else}
{if $nb_products == 1}{l s='There is'}{else}{l s='There are'}{/if} 
{$nb_products} 
{if $nb_products == 1}{l s='product.'}{else}{l s='products.'}{/if}
{/if}
</span>{/strip}
</h2>
{if $scenes}
<!-- Scenes -->
{include file=$tpl_dir./scenes.tpl scenes=$scenes}
{else}
<!-- Category image -->
{if $category->id_image}
<img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" />
{/if}
{/if}
{if $category->description}
<div class="cat_desc">{$category->description}</div>
{/if}
{include file=$tpl_dir./binding_bottom.tpl}
{if isset($subcategories)}
<!-- Subcategories -->
<div id="subcategories">
<h3>{l s='Subcategories'}</h3>
<ul class="inline_list">
{foreach from=$subcategories item=subcategory}
<li>
<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}">
{if $subcategory.id_image}
<img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium')}" alt="" />
{else}
<img src="{$img_cat_dir}default-medium.jpg" alt="" />
{/if}
</a>
<br />
<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'}</a>
</li>
{/foreach}
</ul>
<br class="clear"/>
</div>
{/if}
{if $products}
{include file=$tpl_dir./product-sort.tpl}
{include file=$tpl_dir./product-list.tpl products=$products}
{include file=$tpl_dir./pagination.tpl}
{elseif !isset($subcategories)}
<!--<p class="warning">{l s='There are no products in this category.'}</p>-->
{/if}
{elseif $category->id}
<!--<p class="warning">{l s='This category is currently unavailable.'}</p>-->
{/if}