Page 1 of 1

remove edit details in register form

PostPosted: Mon Feb 01, 2010 7:04 am
by iliakros
Hello,

I would like to remove the edit details bar in the registration form. How can I do that

Thanks

Re: remove edit details in register form

PostPosted: Tue Feb 02, 2010 1:55 am
by iliakros
I found it

Go to Dataface/QuickForm.php. Go to line 471

Code: Select all
if ( $groupEmpty ){
   // This is the first field in the group, so we add a header for the
   // group.
   $headerel =& $this->addElement('header', $group['label'], $group['label']);
   $headerel->setFieldDef($group);
   unset($headerel);
   $groupEmpty = false;
}

and outcommand these lines

Iliakros