the "results" tab next to view tab

Nada Abou Dehn - July 8, 2009 - 14:16

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

it is due to the "decisions"

Nada Abou Dehn - July 9, 2009 - 05:48

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

Anyone figured this out?

span - November 30, 2009 - 16:18

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

Solved...sort of

span - December 1, 2009 - 12:45

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

In template.php:

<?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
'';
  }
}
?>

 
 

Drupal is a registered trademark of Dries Buytaert.