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

Viewing 0 reply threads
  • Author
    Posts
    • #9395
      Rafasashi
      Keymaster

      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 1 month, 1 week ago by Rafasashi.
      • This topic was modified 1 month, 1 week ago by Rafasashi.
Viewing 0 reply threads
  • You must be logged in to reply to this topic.