1
Hello
I was hoping someone could give me advice on how I can allow my users to change their own nicknames.
I thought the best way of doing this was by editing edituser.php.
I tried changing the following (lines 150 and 151)-
$uname_label = new XoopsFormLabel(_US_NICKNAME, $xoopsUser->getVar('uname'));
$form->addElement($uname_label);
to-
$uname_text = new XoopsFormText(_US_NICKNAME, 'uname', 30, 60, $xoopsUser->getVar('uname','E'));
$form->addElement($uname_text);
That did change the label to a text box and pre fill it with the existing nickname, but if I change it and click submit it does not save the changes. I am sure it is something simple I am missing and I was wondering if anyone could help shed any light on this.
Thanks
Jonathan