View Single Post
  #7  
Old 04-26-2006, 04:41 PM
  wjbrewer's Avatar 
wjbrewer wjbrewer is offline
Banned
 

X-Adept
  
Join Date: Feb 2005
Location: Pittsburgh, PA
Posts: 504
 

Default

Make sure that you have anonymous checkout enabled. Then open main/register_account.tpl and change the fields you do not want to show from "text" to "hidden"

For example change

Code:
<INPUT type="text" name="uname" size="32" maxlength="32" value="{$userinfo.login}">

to

Code:
<INPUT type="hidden" name="uname" size="32" maxlength="32" value="{$userinfo.login}">

This should work. You might have to do a little formatting to this template to make it look good.
Reply With Quote