The User profile and related views have been reworked and are now displayed like a post with ACF Field Groups for a consistent administration experience.
Note that Field Groups can now use also use the “High (After title)” and “Side” position.
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.
WordPress settings views (general, writing, reading, discussion, media & permalinks) have been reworked and are now displayed like a post with ACF Field Groups for a consistent administration experience.
ACF Fields Groups can also be displayed on the Settings screens using the WP Settings Locations PRO
The Enhanced UI module is enabled by default. It can be enabled and disabled using the Settings UIPRO, or with the following code:
#Using acf/init:
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){
// Disable Enhanced UI
acf_update_setting('acfe/modules/ui', false);
}#Using acfe/init:
add_action('acfe/init', 'my_acfe_modules');
function my_acfe_modules(){
// Disable Enhanced UI
acfe_update_setting('modules/ui', false);
}#Disable User UI only:
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){
// Disable User UI
acf_update_setting('acfe/modules/user_ui', false);
}#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);
}#Disable Settings UI only:
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){
// Disable Settings UI
acf_update_setting('acfe/modules/settings_ui', false);
}