How to remove the “WordPress.com account” column from the Users List Home › Forums › WordPress Development › How to remove the “WordPress.com account” column from the Users List This topic has 0 replies, 1 voice, and was last updated 5 months ago by Rafasashi. Viewing 0 reply threads Author Posts July 9, 2025 at 2:15 pm #9395 RafasashiKeymaster The “WordPress.com Account” column with class="jetpack-connection-tooltip-icon" is added to the WordPress Users table by WooCommerce. To remove the column from the admin screen you can unset the jetpack-connection column using the manage_users_columns filter: add_filter('manage_users_columns',function($columns){ unset($columns['user_jetpack']); return $columns; },9999999,1); This topic was modified 5 months ago by Rafasashi. This topic was modified 5 months ago by Rafasashi. Author Posts Viewing 0 reply threads You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Website Captcha Log In