ATutor

Learning Management Tools







Pages:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


nickname in atutor forum


  • 2009-09-09 06:11:50

    nickname in atutor forum

    For privacy law I need to change in atutor forum the real name in the user name or a nickname.
    Can you tell me the files i need to modify or if i need to installa new module?
    Thanks a lot!

  • 2009-09-09 06:17:04

    Re: nickname in atutor forum

    You'll need to edit the database entry. See table AT_members, search for the login field there.
    You may need a tool like phpMyAdmin for that.

    There's no way to change that via the ATutor interface.

  • 2009-09-09 08:37:25

    Re: nickname in atutor forum

    You can also set the Display Name format in the admin's System Preferences to display only the login name.

    If you want to remove the real name altogether, you'd need top remove or comment out the checks for first name and last name from the registration.php script:


    [php]

    // if (!$_POST['first_name']) {
    // $missing_fields[] = _AT('first_name');
    // }
    //
    // if (!$_POST['last_name']) {
    // $missing_fields[] = _AT('last_name');
    // }



    [/php]