background image
Eric's picture

Here's a quick snippet on how you can remove the History section from a user's profile using hook_user():

<?php
function MYMODULE_user($type, &$edit, &$account, $category = NULL) {
 
// remove history from user profile view
 
if ($type == 'view') {
    unset(
$account->content['summary']);
  }
}
?>