I really would like to remove completely calendar popup on registration page... only select and option value for days, months and years... how can i make this?
Now i modify file: Comprofiler.class.php
[code:1] function cbAddCalendar( $oName, $oLabel, $oReq, $oValue = "", $oReadOnly = false, $showTime = false, $yMin = null, $yMax = null ) {
[/code:1]
and on return i set my own select and option list
and then i modify plugin.class.php
[code:1] function validate( &$field, &$user, $columnName, &$value, &$postdata, $reason ) {
[/code:1]
and put && $reason != 'register'
[code:1] // Required field:
if ( ( $field->required == 1 ) && ( $value == '' ) && $reason != 'register' ) {
$this->_setValidationError( $field, $user, $reason, unHtmlspecialchars(_UE_REQUIRED_ERROR) );
return false;
}
[/code:1]
, but when i register new account, js don't take anymore my date...

I'm frustrated by this problem!