WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: seanie_morris on January 24, 2017, 08:03:18 PM

Title: Where does the 'You are here:' in breadcrumbs come from?
Post by: seanie_morris on January 24, 2017, 08:03:18 PM
Sorry about this, but it has plagued me for most of the day! I am using the Overdrive template which has a breadcrumbs section with the text:
Quote
You are here: Page name >> Child page name
I can't find where the 'You are here' text is being called from, it's not in any of the extracted files, and there is no droplet in my admin backend. Where is that text found?


Thanks,

Seanie.
Title: Re: Where does the 'You are here:' in breadcrumbs come from?
Post by: hgs on January 25, 2017, 07:43:25 AM
Which template you use
Title: Re: Where does the 'You are here:' in breadcrumbs come from?
Post by: Luisehahne on January 25, 2017, 09:59:40 AM
The parameter for the function show_breadcrumb is as follows
show_breadcrumbs($sep = ' » ',$level = 0, $links = true, $depth = -1, $title = '', $print=true)

if you want to set an own title, you can do it by setting the 5th parameter. By default the title parameter is emtpy and will be replaced with $MENU['BREADCRUMB'] within the function.

Dietmar


Title: Re: Where does the 'You are here:' in breadcrumbs come from?
Post by: seanie_morris on February 02, 2017, 11:51:06 AM
if you want to set an own title, you can do it by setting the 5th parameter. By default the title parameter is emtpy and will be replaced with $MENU['BREADCRUMB'] within the function.

Hi Dietmar,

That was it, and I found the line that you speak of in the language file EN.php to change, thanks!

Seanie.