2 Comments

  1. For multi-lingual sites the front page is dependent on the currently selected language, so you will need to use code like this:

    getActive() == $menu->getDefault( 'en-GB' )) {
    echo 'This is the front page';
    }
    elseif ($menu->getActive() == $menu->getDefault( 'fr-FR' )) {
    echo 'Accueil';
    }
    ?>

Leave a Reply