Results 1 to 2 of 2

Thread: Breadcrumb in a custom section...

  1. #1
    New user
    Join Date
    11-20-09.
    Posts
    9

    Default Breadcrumb in a custom section...

    I'd like to have the breadcrumb navigation path in a custom section, amid the header and main content. Since I want to format that area in a peculiar way, I thought of using a custom section.

    Now... I created the breadcrumb module, and that's ok: if I add it to header or main content it works as expected.
    I created a custom section named "navpath", and it appears available in page layout setting.
    But when I try to add breadcrumb to "navpath" section it doesn't appear anywhere.

    In layout settings I tried putting "navpath" after header, or in main column, but nothing changed.
    Then I tried a (desperate?)
    Code:
    <?php echo this->navpath; ?>
    in my template, but it didn't change anything either...
    Note: echo-ing the code would even be my preferred solution, since I want it to appear in a specific <div> of my template, not just "after header" or "inside main". How to obtain it?

    I read some of the previous messages on that subject, but looks like I still miss something!
    Any help would be appreciated

    ~ Lou

  2. #2
    New user
    Join Date
    11-20-09.
    Posts
    9

    Default Re: Breadcrumb in a custom section...

    Oops... too late: I resolved it, with the hints from http://www.typolight.org/forum/topic/161.html?page=2

    Just had to properly code PHP as in
    Code:
    <?php echo $this->sections['navpath']; ?>
    Hope this monologue helps someone though

    ~ Lou

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •