What mods are required to simplify the signup so's just a valid email address is required? I already have it generate a user name and password; now want to remove the requirement for them to enter their name (that can be something they do later in profile).
Edit /amember/templates/signup.html and remove fields for first & last name from it. Then edit signup.php and remove this: if (!strlen($vars['name_f'])){ $error[] = _SIGNUP_PLEASE_ENTER_FNAME; } if (!strlen($vars['name_l'])){ $error[] = _SIGNUP_PLEASE_ENTER_LNAME; }