Skip to content

Instantly share code, notes, and snippets.

@lincoln-chawora
Created September 2, 2019 12:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lincoln-chawora/255e820b578726d8625a8cd7ded79881 to your computer and use it in GitHub Desktop.
Save lincoln-chawora/255e820b578726d8625a8cd7ded79881 to your computer and use it in GitHub Desktop.
How to remove a menu tab from a content type in drupal 8
/**
* Implements hook_menu_local_tasks_alter().
*
* Remove replicate menu tab.
*/
function YOUR_THEME_menu_local_tasks_alter(&$data, $route_name, RefinableCacheableDependencyInterface &$cacheability) {
$routes = &$data['tabs'][0];
if ($routes['replicate_ui.local_tasks:entity.node.replicate']) {
unset($routes['replicate_ui.local_tasks:entity.node.replicate']);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment