I would like to edit the navigation links
If for example
function nav_list($navigation, $navtype)
{
if ( $this->template != 'ask' )
{
$this->output('<ul class="qa-nav-'.$navtype.'-list">');
foreach ($navigation as $key => $navlink)
$this->nav_item($key, $navlink, $navtype);
$this->output('</ul>');
}
I am using this so that the navigation area doesnt get displayed on the page
Now the functionality which i need is that
when
$this->template != 'questions'
I just want "Questions " and "Tags" navigation to be present.I want to remove the "Admin" and "Users" tabs.
How can i do that.
Actually i am new to php hence i am not able to edit the code.
Thanks