Community & Support

the "results" tab next to view tab

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

Comments

it is due to the "decisions"

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

Anyone figured this out?

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

// Daniel Kvist @ MR-piloterna

Solved...sort of

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

// Daniel Kvist @ MR-piloterna