Ive been use this code (before an else) to redirect an item to it´s category if have not "fulltext".
in item.php
<?php echo $mainframe->redirect($this->item->category->link);?>
this works fine!
but, i want to redirect one level high, to the parent category of the category item. so I tried this, but dont works....
<?php echo $mainframe->redirect($this->item->category->category->link);?>
and
<?php echo $mainframe->redirect($this->item->category->parent->link);?>
and
<?php echo $mainframe->redirect($this->item->parentcategory->link);?>
buth dont works..... any body have the solution, how to call the parent category??? tanks.