Index: modules/content_profile_registration.module =================================================================== --- modules/content_profile_registration.module (revision 525) +++ modules/content_profile_registration.module (working copy) @@ -158,7 +158,12 @@ $form += array('#field_info' => array()); $form['#field_info'] += $node_form['#field_info']; $form += $form_add; - + + // add the callbacks + foreach (array('#after_build') as $type) { + $form[$type] = array_merge($form[$type], array_diff($node_form[$type], $form[$type])); + } + // Add in further callbacks needed, if not yet done. if (!isset($form['#content_profile_weights'])) { $form['#submit'][] = 'content_profile_registration_user_register_submit';