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.
Render this title on edit post screen
Field groups with a lower order will appear first
Shown in field group list
Select items to hide them from the edit screen.
Select user roles that are allowed to view and edit this field group in post edition
Add personal note. Only visible to administrators
This module is enabled by default. To disable it, you can use the following code:
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){
// Disable Enhanced Field Group UI
acfe_update_setting('modules/field_group_ui', false);
// Or:
acf_update_setting('acfe/modules/field_group_ui', false);
}