
Originally Posted by
Bad Kitty Studios
An update to this thread for those looking to disable the registration form in Zen Cart but still have the customer login form available.
Another way to turn off the registration form but still have the login for returning customers is to use CSS. I found the div called #createAccountForm and in the CSS set this to display:none. It worked! There is no form and no box to allow registration, only the login form.
Sample code:
div#createAccountForm {
display:none;
}
Hope this helps!
Bookmarks