View Single Post
  #77  
Old 06-29-2008, 05:40 AM
  HWT's Avatar 
HWT HWT is offline
 

eXpert
  
Join Date: Jan 2005
Location: Massachusetts, USA
Posts: 392
 

Default Re: common if/then modifications I make to x-cart...

This is how I would handle it:
Code:
{if $login ne""} Whatever you want logged in customers to see. {else} Whatever you want not logged in visitors to see. {/if}

so in your case:
Code:
{if $login ne""} {include file=customer/main/welcome.tpl} {else} {include file=customer/main/welcomenl.tpl} {/if}

I believe it's simply the "" vs. the ' ' after the {if $login ne that's messing you up.

HTH
__________________
x-cart 4.0.13 and 4.1.7 and 4.1.10
Reply With Quote