Taxonomy UI

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.

User UI

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.

Settings UI

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

Disable the module

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);
    
}

// Or using acfe/init
add_action('acfe/init', 'my_acfe_modules');
function my_acfe_modules(){
    
    // Disable Enhanced UI
    acfe_update_setting('modules/ui', false);
    
}