- Issue created by @mlncn
- πΊπΈUnited States mlncn Minneapolis, MN, USA
Will leave my custom code here for now:
/** * Implements hook_form_BASE_FORM_ID_alter() for taxonomy term add/edit forms. * * Thanks to https://www.bryanbraun.com/2013/08/17/using-hook-form-base-form-id-alter/ * * Really wonder if there is a bundle class way to get at these forms. */ function massdesigngroup_form_taxonomy_term_form_alter(&$form, FormStateInterface $form_state, $form_id) { // If we have an organization term, restrict Rabbit Hole options to default or display. $vocab = $form['vid']['#value'] ?? ''; if ($vocab === 'organizations' && isset($form['rabbit_hole__settings']['widget'][0]['action']['#options'])) { unset($form['rabbit_hole__settings']['widget'][0]['action']['#options']['page_not_found']); unset($form['rabbit_hole__settings']['widget'][0]['action']['#options']['page_redirect']); // Access Denied is an option we want, but only as the global behaviors default. unset($form['rabbit_hole__settings']['widget'][0]['action']['#options']['access_denied']); } }