Getting Started
Field Groups
Fields
Field Settings
Modules
WordPress
Hooks & Helpers

Field Group UIPRO

Docs Field Groups Field Group UI

#Enhanced Field Group UI

The Field Group UI has been enhanced for a better user experience. Settings have been grouped together within tabs allowing an easier access to Field Groups features.

Settings

#Disable the module

The Field Group UI module is enabled by default. It can be enabled and disabled in the Settings UIPRO or with the following code:

// Using acf/init
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){

    // Disable Field Group UI
    acf_update_setting('acfe/modules/field_group_ui', false);
    
}

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