Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • Janice W Davis Friend
    #150483

    I have changed the menu assignment for the mod_breadcrumbs to exclude the home page – but the “You are here” still shows up. I don’t want to change the template to exclude it, as I still want it to show on the internal pages – just not the home page.

    Is this a bug?

    Thanks
    Janice

    Aratype Friend
    Janice W Davis Friend
    #340821

    Thanks Aratype – but the link you provide has me changing the text “You are here” to a blank.

    I want the breadcrumbs to show up on the other pages – just not the home page. The module seems to ignore the menu selection.

    Thanks
    Janice

    Aratype Friend
    #340823

    Hi Janice,
    Actually, I think this request is not possible in Joomla itself! I heared from Joomla France that it will be available in J 1.6

    OR

    Janice W Davis Friend
    #340831

    Wow – so you are saying that no matter what is selected is selected in menu_selected – it will be ignored – Is that correct?

    Although I found a couple of posts elsewhere that seems to indicate it shoud work: http://www.templateplazza.com/component/option,com_fireboard/Itemid,6/catid,20/do,quote/func,post/replyto,33385/

    http://groups.google.com/group/joomla-devel/browse_thread/thread/aa77578aa4d32174/8c98f24e762bf0f5?pli=1

    Janice

    Aratype Friend
    #340836

    So you can go to Breadcrumbs module and Menu Assignment… Then you choose the page that you want to show Breadcrumbs in it… (Select Menu Item(s) from the List)

    Janice W Davis Friend
    #341681

    I had tried the menu selection for the module but that didn’t work. I did end up adding a php if to the index.php page to exclude the breadcrumbs if it is on the homepage and this works. The code is below:

    <?php
    $menu = & JSite::getMenu();
    if (!($menu->getActive() === $menu->getDefault())) {
    ?>

    <div id="ja-pathway" class="wrap">

    <div class="main clearfix">

    <div class="inner">

    <strong>
    <?php echo JText::_('YOU ARE HERE:');?>
    </strong>
    <jdoc:include type="module" name="breadcrumbs" />

    </div>

    </div>

    </div>
    <?php
    }
    ?>

    Saguaros Moderator
    #341792

    Dear jwdavis!

    here is the solution:
    [PHP]
    <?php if( !$tmpTools->isFrontPage() ) : ?>
    <div id=”ja-pathway” class=”wrap”>

    <div class=”main clearfix”>

    <div class=”inner”>

    <strong>
    <?php echo JText::_(‘YOU ARE HERE:’);?>
    </strong>
    <jdoc:include type=”module” name=”breadcrumbs” />

    </div>

    </div>

    </div>
    <?php endif;?>
    [/PHP]

Viewing 8 posts - 1 through 8 (of 8 total)

This topic contains 8 replies, has 3 voices, and was last updated by  Saguaros 14 years, 6 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum