Simplified signup

Discussion in 'Customization & add-ons' started by wizzazza, Jun 21, 2007.

  1. wizzazza

    wizzazza Member

    Joined:
    Jan 30, 2007
    Messages:
    30
    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).
  2. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    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;
    }

Share This Page