Can anyone please tell me how to remove the link to View the recent blog entries link on the user page?

Comments

cheekysaffer created an issue. See original summary.

robotjox’s picture

There might be better ways, but I did it using hook_user_view_alter in a custom module:

function your_module_user_view_alter(&$build, $account, $display) {
  unset($build['summary']['blog']['#markup']);
}
i.bajrai’s picture

@robotjox that's the right approach, but the better way would have been:

function your_module_user_view_alter(&$build, $account, $display) {
  unset($build['summary']['blog']);
}

You want to remove the whole part of the render array, not just the #markup.

nevergone’s picture

Status: Active » Closed (works as designed)