If you’re using WooCommerce, and want to exclude the delete account tab in account page,
add_filter( 'wpfda_disable_delete_account_tab', function() {
$user = wp_get_current_user();
$excluded_roles = array('editor', 'administrator', 'author');
if( array_intersect( $excluded_roles, $user->roles ) ) {
return true;
}
return false;
});
It’s a good Feature to be included within the plugin itself – which is being noted along with the social logins.