View Single Post
  #4  
Old 07-16-2008, 04:36 AM
 
balinor balinor is offline
 

Veteran
  
Join Date: Oct 2003
Location: Connecticut, USA
Posts: 30,253
 

Default Re: Removing "Page Name" from Static Pages

Hey Meredith, it is this part of dialog.tpl:

<tr>
<td class="DialogTitle">{$title}</td>
</tr>

If you want to hide it for some pages/categories, etc, you could use {if} statements similar to this:

{if $cat ne "4" and $cat ne "5"}
<tr>
<td class="DialogTitle">{$title}</td>
</tr>{/if}

That would hide the title for category 4 and 5
__________________
Padraic Ryan
Ryan Design Studio
Professional E-Commerce Development
Reply With Quote