View Single Post
  #5  
Old 04-29-2008, 05:53 PM
  kube's Avatar 
kube kube is offline
 

X-Adept
  
Join Date: Sep 2005
Location: London: a small place East of Wales
Posts: 529
 

Default Re: How can I move category type below category thumnails?

Hi xcarter,

To move your category description text:

Locate in customer/main/subcategories.tpl the following line and copy it. Then {*comment it out *}...

Code:
{if ($navigation_page eq "")||($navigation_page eq "1")}{$current_category.description}<p />{/if}

Then further down the code locate the following include...
Code:
{include file="dialog.tpl" title=$current_category.category content=$smarty.capture.dialog extra='width="100%"'}

and paste the copied code you've commented out immediately afterwards (and add a BR for some layout). So the resulting code (including the include) will look like...

Code:
{include file="dialog.tpl" title=$current_category.category content=$smarty.capture.dialog extra='width="100%"'} <br /> {if ($navigation_page eq "")||($navigation_page eq "1")}{$current_category.description}<p />{/if}

Hope this helps.
__________________
Doms
kube v4.1.9
Reply With Quote