WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: dpulver on May 11, 2010, 10:09:51 AM

Title: Mamboo portal
Post by: dpulver on May 11, 2010, 10:09:51 AM
Hello,
i have a small question:
In the mamboo template for WebsiteBaker, over the left menus there is written 'Your are here'.
I have searched all files of this template but didn't find it.
Can you tell me, wherer i can delete this words?
Thanks
Title: Re: Mamboo portal
Post by: kweitzel on May 11, 2010, 10:23:28 AM
It is the function "show_breadcrumbs" in line 90 of the template:

Quote
<?php show_breadcrumbs(); ?>

If you remove it, the page trail will be gone including the part "you are here".

cheers

Klaus
Title: Re: Mamboo portal
Post by: kweitzel on May 11, 2010, 10:31:14 AM
Addition: If you want to "just" remove the text, you can also call it:

Code: [Select]
<?php show_breadcrumbs(&#39; &raquo; &#39;, 0, true, -1, &#39;You are here: &#39;); ?>
Parameters:

1 - ' &raquo; ' is the separator
2 - 0 is the startlevel
3 - true set links, if yes = true or no = false
4 - -1 startlevel
5 - 'You are here: ' - Titel can be set to whatever you want

cheers

Klaus