Skip to content

Instantly share code, notes, and snippets.

@jcicero518
Created December 19, 2022 15:54
Show Gist options
  • Save jcicero518/2d5b6a4afd9fc2bfbeef5aaae6d6b9f4 to your computer and use it in GitHub Desktop.
Save jcicero518/2d5b6a4afd9fc2bfbeef5aaae6d6b9f4 to your computer and use it in GitHub Desktop.
function myModule_element_info_alter(&$type) {
if (isset($type['captcha'])) {
$type['captcha']['#after_build'][] = 'myModule_after_build_process';
}
}
function myModule_after_build_process($element, $form_state) {
$element['captcha_widgets']['recaptcha_widget']['#suffix'] = '<div><label class="hide" for="g-recaptcha-response">Recaptcha response</label></div>';
return $element;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment