The Enhanced UI module is enabled by default. It can be enabled and disabled globally with all its child components 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); }