View Single Post
  #19  
Old 09-01-2004, 07:52 AM
  TelaFirma's Avatar 
TelaFirma TelaFirma is offline
 

X-Adept
  
Join Date: Nov 2002
Location: North Carolina USA
Posts: 930
 

Default

Code:
{if $main ne "anonymous_checkout" OR $main eq "checkout"} {include file="customer/categories.tpl" } {/if}

Should work with no problem.

If that is not working for you try

Code:
{if ($main ne "anonymous_checkout") OR ($main eq "checkout")} {include file="customer/categories.tpl" } {/if}
Reply With Quote