How to hide Edit | View tabs?

后端 未结 11 1001
轮回少年
轮回少年 2021-02-01 04:43

Can I hide the

Edit | View

tabs on top of each node ?

I\'ve searched for this option in theme settings (both global and sta

11条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-01 05:28

    For all the people stumbling upon this question while looking for a D7 solution: As stated on https://drupal.stackexchange.com/a/77964/15055 it's hook_menu_local_tasks_alter()

    /**
     * Implements hook_menu_local_tasks_alter() to unset unwanted tabs
     */
    function MYMODULE_menu_local_tasks_alter(&$data) {
      foreach ($data['tabs'][0]['output'] as $key => $value) {
        if ($value['#link']['path'] == 'node/%/view') {
          unset($data['tabs'][0]['output'][$key]);
        }
      }
    }
    

提交回复
热议问题