When I set a og panel to be my group homepage it will automatically set it's tab title to 'Home'.

How could I change this tab title from 'Home' to 'Team Homepage'?

Comments

jimthunderbird’s picture

Hi,
I guess this can be done with a custom module implementing hook_menu_alter.

In og_panels.module line #117, there is a code snippet like this:

   function og_panels_menu_alter(&$items) {
       $items['node/%node/view'] = array(
    'title callback' => 'og_panels_tab_title',
    'title arguments' => array(1, NULL, TRUE),
    'type' => MENU_DEFAULT_LOCAL_TASK,
    'weight' => -10
  );
  }
   

So in your custom module, reroute this item's title callback to your own title callback and you should be able to do whatever you like.

Best Regards,
Jim