Enhanced UI FREE

Docs WordPress Enhanced UI

#WP User

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.

ACF Extended
Howdy, ACF Extended
Edit User John DoeAdd User
Name
Personal Options
Default
Light
Modern
Contact Info
Edit User
ACF Extended
Howdy, ACF Extended
Add User
Add User
Create a brand new user and add them to this site.
Add User

#WP Taxonomy

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.

ACF Extended
Howdy, ACF Extended
Edit Term
Name

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.

Edit Term
ACF Extended
Howdy, ACF Extended
TermsAdd New
NameDescriptionSlugCount
Term 1term-12
Term 2term-20
Term 3term-33
Term 4term-43
NameDescriptionSlugCount

#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

ACF Extended
Howdy, ACF Extended
General Settings
General Settings

This address is used for admin purposes. If you change this, we will send you an email at your new address to confirm it. The new address will not become active until confirmed.

General Settings

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

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