i am using Zend_Navigation i want to show the nav item in the breadcrumbs but hide it in my menu, how can i do that?

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

There are many choices, e.g.

  • You may set visible parameter to false (eg. in xml config file), then use setRenderInvisible(true/false) on the navigation helper,
  • You may use separate containers,
  • You may modify the container on the fly (getContainer(), getItemBy()…)
link|improve this answer
feedback

When using an XML config file, use an integer instead of a boolean value:

<visible>0</visible>

An issue has already been logged for this problem here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.