TermsAdd New
The Taxonomy views have been enhanced for a more consistent administration experience, using CSS/JS only. Taxonomies now look & feel like post types.
Note that Field Groups can now use also use the “High (After title)” and “Side” position.
The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.
The description is not prominent by default; however, some themes may show it.
#Disable Term UI only:
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){
// Disable Term UI
acf_update_setting('acfe/modules/term_ui', false);
}