Title: developerdeveloper's Replies | WordPress.org

---

# developerdeveloper

  [  ](https://wordpress.org/support/users/developerdeveloper/)

 *   [Profile](https://wordpress.org/support/users/developerdeveloper/)
 *   [Topics Started](https://wordpress.org/support/users/developerdeveloper/topics/)
 *   [Replies Created](https://wordpress.org/support/users/developerdeveloper/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/developerdeveloper/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/developerdeveloper/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/developerdeveloper/engagements/)
 *   [Favorites](https://wordpress.org/support/users/developerdeveloper/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Local Avatars] Rectangle not square avatars?](https://wordpress.org/support/topic/rectangle-not-square-avatars/)
 *  [developerdeveloper](https://wordpress.org/support/users/developerdeveloper/)
 * (@developerdeveloper)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/rectangle-not-square-avatars/#post-3838186)
 * Same here!
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Default custom post column to 'off' in screen options](https://wordpress.org/support/topic/default-custom-post-column-to-off-in-screen-options/)
 *  [developerdeveloper](https://wordpress.org/support/users/developerdeveloper/)
 * (@developerdeveloper)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/default-custom-post-column-to-off-in-screen-options/#post-3396521)
 * [https://codex.wordpress.org/Plugin_API/Action_Reference/wp_login](https://codex.wordpress.org/Plugin_API/Action_Reference/wp_login)
 *     ```
       add_action('wp_login', 'myplugin_login_save');
   
       function myplugin_login_save($user_id) {
   
       	// get the hidden columns on the edit-book screen
       	// manage{edit-book}columnshidden
       	$hidden_columns = get_user_option( "manageedit-bookcolumnshidden" );
   
       	// check if the "book_author" column is already hidden
       	if(!in_array('id', (array) $hidden_columns)){
   
       	  // add "book_author" to the hidden columns
       	  $hidden_columns[] = 'id';
   
       	  // update the hidden columns
       	  add_user_meta($user_id, "manageedit-bookcolumnshidden", $hidden_columns);
       	}    
   
       }
       ```
   
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Default custom post column to 'off' in screen options](https://wordpress.org/support/topic/default-custom-post-column-to-off-in-screen-options/)
 *  [developerdeveloper](https://wordpress.org/support/users/developerdeveloper/)
 * (@developerdeveloper)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/default-custom-post-column-to-off-in-screen-options/#post-3396517)
 * [http://codex.wordpress.org/Plugin_API/Action_Reference/user_register](http://codex.wordpress.org/Plugin_API/Action_Reference/user_register)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Default custom post column to 'off' in screen options](https://wordpress.org/support/topic/default-custom-post-column-to-off-in-screen-options/)
 *  [developerdeveloper](https://wordpress.org/support/users/developerdeveloper/)
 * (@developerdeveloper)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/default-custom-post-column-to-off-in-screen-options/#post-3396516)
 * Have you thought about “user_register” action?
    [](http://codex.wordpress.org/Plugin_API/Action_Reference/user_register)
 *     ```
       add_action('user_register', 'myplugin_registration_save');
   
       function myplugin_registration_save($user_id) {
   
       	// get the hidden columns on the edit-book screen
       	// manage{edit-book}columnshidden
       	$hidden_columns = get_user_option( "manageedit-bookcolumnshidden" );
   
       	// check if the "book_author" column is already hidden
       	if(!in_array('id', (array) $hidden_columns)){
   
       	  // add "book_author" to the hidden columns
       	  $hidden_columns[] = 'id';
   
       	  // update the hidden columns
       	  add_user_meta($user_id, "manageedit-bookcolumnshidden", $hidden_columns);
       	}    
   
       }
       ```
   

Viewing 4 replies - 1 through 4 (of 4 total)