Screen Layouts

Post Edit screens have been enhanced allowing up to 3 columns layout and multiple variations. The Screen Layouts settings can be found in the Screen options settings, on the top right corner of all post types.

ACF Extended
Howdy, ACF Extended
Edit PageAdd New
Field Group
Featured Image
Click the image to update Remove featured image
Publish
Status: Published
Visibility: Public
Author

Disable the module

The Screen Layouts 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 Screen Layouts
    acf_update_setting('acfe/modules/screen_layouts', false);
    
}

// Or using acfe/init
add_action('acfe/init', 'my_acfe_modules');
function my_acfe_modules(){
    
    // Disable Screen Layouts
    acfe_update_setting('modules/screen_layouts', false);
    
}