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