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