If I want to add the extra fields in registration field then what should we do?
Answer Posted / Amit Kumar Sahani
To add extra fields in Drupal's registration form, you can create a custom module and implement the hook_form_alter(). This hook allows you to modify existing forms. In your case, you would target the user registration form (typically 'user_register_form'). After that, you can add your custom fields to the $form array.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers