How o get rid of this result tab for all the users?

Comments

Nada Abou Dehn’s picture

it is due to the "decisions" module but couldn't configure how to get rid of it

span’s picture

Has anyone figured out on how to get rid of the tabs yet? I'm looking at it but can't really get it :/

span’s picture

Here is what i did, it will probably cause problems but in a hurry atm.

In template.php:

function phptemplate_menu_item_link($link) {
  
  // Removes the tabs Result and View tabs from the voting page
  if($link['path'] == 'node/%/results' || $link['path'] == 'node/%/view') {
    return ''; 
  }
}