View Single Post
  #4  
Old 09-11-2006, 03:12 AM
 
balinor balinor is offline
 

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

Default Re: other skin dir depending on user

Then just use an {if} statement in customer/home.tpl on the line that controls which skin is displayed. No need to change the whole skin directory:

{if $usertype eq "C"}
<LINK rel="stylesheet" href="{$SkinDir}/skin1.css">
{else}
<LINK rel="stylesheet" href="{$SkinDir}/skin2.css">
{/if}

Check the sticky thread on {if} statements for membership level statements.
__________________
Padraic Ryan
Ryan Design Studio
Professional E-Commerce Development
Reply With Quote