Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6131725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:00:45+00:00 2026-05-23T17:00:45+00:00

I can’t figure out why this is not working. The item element always remains

  • 0

I can’t figure out why this is not working. The item element always remains visible. I am using the latest release and my menu looks like:

public function hook_menu()
{
    $menu['menuPageController'] = array(
        array(
            'label' => 'Start',
            'controller' => 'page',
            'action' => 'index'
        ),
        array(
            'label' => 'Produkter',
            'controller' => 'page',
            'action' => 'products',
            'class' => 'beyond',
            'pages' => array(
                    array(
                        'label' => 'default list a',
                        'controller' => 'page',
                        'action' => 'products',
                        'class' => 'beyond',
                        'params' => array(
                            'lista' => 'a')
                    ),
                    array(
                        'label' => 'list b',
                        'controller' => 'page',
                        'action' => 'products',
                        'class' => 'beyond',
                        'params' => array(
                            'listb' => 'b')
                    ),

                    array(
                        'label' => 'list c',
                        'controller' => 'page',
                        'action' => 'products',
                        'class' => 'beyond',
                        'params' => array(
                            'listc' => 'c')
                    ),

                )
        ),
        array(
            'label' => 'item',
            'controller' => 'page',
            'action' => 'product',
            'visible' => false,
            'params' => array(
            'id' => null)
        ),
        array(
            'label' => 'Filhanteraren',
            'controller' => 'page',
            'action' => 'filemanager'
        )
    );
    return $menu;
}

In the layout:

<div id="navigation-bar">
    <?php 
    // menu.phtml is partial, cms is module
    $partial = 'partials/main-menu.phtml';
    $this->navigation()->menu()->setPartial($partial);
    $this->navigation()->menu()->setRenderInvisible(false);
    echo $this->navigation()->menu()->render(); ?>
</div>

I don’t think it’s the problem but here’s the partial anyway

<?php
// -- main-menu.phtml
$html = array();
$html[] = '<ul class="navigation">';

foreach (Zend_Registry::get('main') as $page) 
{

    $check = $page->isActive();
    if($check)
    {
        $marker = "active";
    }
    else
    {
        $marker = "inactive";
    }
        $html[] = '<li class="' . $marker . '">';
        $html[] = $this->menu()->htmlify($page) . PHP_EOL;
        $html[] = "</li>";
 }

$html[] = "</ul>";

print ('<div id="main-menu">' . join(PHP_EOL, $html) . '</div>');   

// get the page asked for
$uri = Zend_Controller_Front::getInstance()->getRequest()->getRequestUri();
$con = Zend_Controller_Front::getInstance()->getRequest()->getControllerName();
$act = Zend_Controller_Front::getInstance()->getRequest()->getActionName();

// check for child pages
$list = Zend_Registry::get('main');
$menuItems = $list->toArray();
$function = new AppFiles_Functions_FunctionsHooks();
$current = $list->findOneBy('action', $act);
$isChildof = $function->find_parent($menuItems, $act);

print($isChildof);

  $subhtml = '<ul class="navigation">';
            foreach ($current->pages as $subpage) 
            {

                $check = $subpage->isActive();
                if($check)
                {
                    $submarker = "active";              

                }
                else
                {
                    $submarker = "inactive";

                }
                $subhtml .= '<li class="' . $submarker . '">';
                if ($href = $subpage->getHref()) $subhtml .= "<a href=\"{$href}\">";
                else $subhtml .= "<span>";


                $subhtml .= $subpage->getLabel();

                if ($href) $subhtml .= "</a>";
                else $subhtml .= "</span>";

                $subhtml .= "</li>";


                $subitem[$subpage->getHref()] = '';

            }
    $subhtml .= "</ul>";

// print a container for the child pages            

 ?>

<div id="sub-menu" class="">
<?php echo $subhtml; ?>
</div>
<?php
print($uri);
print "\n<br />";
print($con);
print "\n<br />";
print($act);
print "\n<br />";
?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T17:00:46+00:00Added an answer on May 23, 2026 at 5:00 pm

    Well of course it was my partial. Since I am not using the defaults in rendering the visibility is not checked I guess. So I changed the partial to include the missing method call to isVisible().

    foreach (Zend_Registry::get('main') as $page) 
    {
    
        $check = $page->isActive();
        if($check)
        {
            $marker = "active";
        }
        else
        {
            $marker = "inactive";
        }
        if($page->isVisible())
        {
            $html[] = '<li class="' . $marker . '">';
            $html[] = $this->menu()->htmlify($page) . PHP_EOL;
            $html[] = "</li>";
        }
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can't figure out how to do this in a pretty way : I have
Can I figure out if a function has already been assigned to an event?
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
Can't seem to figure out what's wrong with the simple getJSON call below. It's
Can't work out a way to make an array of buttons in android. This
Can anyone help me trying to find out why this doesn't work. The brushes
Can someone help me with this bug. I need the following code to NOT
can I make my own headers in HTTP request ? e.g. This is normal
Can this be done? It seems like this should be possible. In general, I
Can somebody help me with this. There is HTML code: <h3> <label> <input type=checkbox

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.