View Single Post
  #4  
Old 08-18-2007, 08:47 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default Re: if statement for homepage

Every page except the home page would require:

Code:
{if $main ne "catalog" OR ($main eq "catalog" and $current_category.category ne "")} {include file="location.tpl"} {/if}
Code:

Here's the code break-down:

$main ne "catalog" - If the page is not the home page or a category
OR ($main eq "catalog" and $current_category.category ne "") - If we are on the home page or the category, only show location.tpl if there is a category specified (i.e. not the homepage).
Reply With Quote