>when i go to something like > >Home > Register, home is there as a link, when i click home to goto /, > >there is not breadcrumbs ... why is this so? and menu view helper does not seem to work for MVC >pages? > >when i try > ><?php >$navDefault = new Zend_Navigation_Page_Mvc(array( > 'label' => 'Home', > 'controller' => 'index', > 'action' => 'index' >)); >echo $navDefault->isActive() ? "Yes" : "No"; >?> > >it says navDefault is active ...
"The helper sets the minDepth property to 1 by default, meaning breadcrumbs will not be rendered if the deepest active page is a root page. If maxDepth is specified, the helper will stop rendering when at the specified depth (e.g. stop at level 2 even if the deepest active page is on level 3)." http://framework.zend.com/manual/en/zend.view.helpers.html#zend.view.helpers.initial.navigation.breadcrumbs try: echo $this->navigation()->breadcrumbs()->setMinDepth(0) -- View this message in context: http://www.nabble.com/Zend_Navigation%3A-Breadcrumbs-for-home-page-missing-tp23690653p23697904.html Sent from the Zend Framework mailing list archive at Nabble.com.
