taming auto_nav

Permalink
This is what I want to do. On the Home page, and only the Home page, I do not want Home to appear in the auto_nav menu. But I want it to appear on every other page. How can I do this?

 
ScottC replied on at Permalink Reply
ScottC
what you want to do is edit the view of the auto-nav view to do a check when it spits out its li elements for the ul.

You want to do a check of if $c->getCollectionID() == 1
{
//dont print this li.
}

The concepts are what one needs to wrap their head around.
GrfxMaster replied on at Permalink Reply
I'm new to C5 so bare with me. What exactly do you mean by "edit the view of the auto-nav view"?