Jump to content

How can I change this ?


Recommended Posts

in category.tpl, find this code:

 


    {if $category->description}
	    <div class="cat_desc">{$category->description}</div>
    {/if}

 

Move it to above the last line in the template, like this:

 

    {if $products}
		    {include file="$tpl_dir./product-compare.tpl"}
		    {include file="$tpl_dir./product-sort.tpl"}
		    {include file="$tpl_dir./product-list.tpl" products=$products}
		    {include file="$tpl_dir./product-compare.tpl"}
		    {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}
   {if $category->description}
    <div class="cat_desc">{$category->description}</div>
   {/if}
{/if}

 

I am using 1.4.4.1 modify to support your template.

Link to comment
Share on other sites

×
×
  • Create New...