Multiple Fields Remove Button
Component ID
2028623
Component name
Multiple Fields Remove Button
Component type
module
Maintenance status
Development status
Component security advisory coverage
covered
Downloads
29165
Component created
Component changed
Component body
Drupal core provides functionality to add multiple fields into node form by using Add another Item but drupal does not facilitate to remove these fields after you have added. Multiple Fields Remove Button provides this functionality by adding Remove button against each field.
Note: This module also work with Multiple Selects module.
For Developers:
You can implement this functionality for other fields which have no remove button.
function hook_multiple_field_remove_button_field_widgets_alter(&$fieldwidgets) {
// Add new widget type in $fieldwidgets
}
