Skip to content

Instantly share code, notes, and snippets.

@ewillhite
Created July 15, 2013 19:04
Show Gist options
  • Save ewillhite/6002498 to your computer and use it in GitHub Desktop.
Save ewillhite/6002498 to your computer and use it in GitHub Desktop.
function qhr_menu_block_tweaks_menu_block_tree_alter(&$tree, &$config) {
foreach ($tree as $key => $item) {
if (isset($item['below'])) {
$key = current($item['below']);
if ($key['link']['link_path'] === '<view>') {
unset($key['link']['localized_options']['menu_views']);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment