Viewing 1 replies (of 1 total)
  • add_filter( 'manage_users_columns', 'ss_remove_ip_column', 100 );
    function ss_remove_ip_column( $column_headers ) {
        unset( $column_headers['signup_ip'] );
        return $column_headers;
    }

    Add that to functions.php of a child theme or a custom functions plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Column ‘User IP’ from Users List’ is closed to new replies.