Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
分類用語を作成する場合、「用語説明テキストエリア」と呼ばれるカスタム説明ボックスがあります。それを取り除く方法はありますか?
私が考えることができる最も簡単な方法は、カスタムモジュールでフォームを変更することです(これをテストしたところ、うまくいきました):
function mymodule_form_taxonomy_form_term_alter(&$form, &$form_state, $form_id) { $form['description']['#access'] = FALSE; }