View Single Post
  #33  
Old 07-30-2003, 09:45 AM
  Jon's Avatar 
Jon Jon is offline
 

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

Default

Quote:
Originally Posted by toonarific
and is there a way to only have the 'remember me' check box appear on the customer's home page, and not the admin page?

I have my admin section on a secure url, so I have seperate auth.tpl's.

You could probably just edit your auth.tpl with something like this:

Code:
{if $redirect ne "admin"} <input type="checkbox" name="remember" value="Y"> <font size="1">Remember Me</font> {else} <input type="hidden" name="remember" value=""> {/if}
Reply With Quote