How to hide Edit | View tabs?

后端 未结 11 1189
轮回少年
轮回少年 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:25

    Thanks for the last answer. But be aware of this detail: if you try it as-is it cannot work: literals should be just rounded with " or ', not both of them altogether. So it should be:

    /**
     * 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]);
        }
      }
    }
    

    Once taken care of it, it works :)

提交回复
热议问题