Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
Trying to add a new template for a specific form but need the hook at form_element. I've seen this old post about being unable to access the form within this hook. Any ideas on how I can traverse up somehow? I basically need the suggestion for one form only.
function MYMODULE_theme_suggestions_form_element_alter(array &$suggestions, array $variables, $hook) {
if ( $variables['element']['#id'] === 'FORMID') {
$suggestions[] = $hook . '__custom';
}
}