Page 2 of 2

Re: Recent update changed breadcrumbs

Posted: Mon May 28, 2007 1:52 pm
by alby
Serialthunder wrote:
with:

Code: Select all

if (strtolower($content->Alias())!=strtolower($root))    <----  == with !=
Alby
In Version 1.7 of breadcrumbs the line already is included as

Code: Select all

if (strtolower($content->Alias())!=strtolower($root))    <----  == with !=
I've changed the line in both variants but there was no other result than before, as you can see on http://www.crear.de
Perhaps the selection doesn't work !?

So what should I do now ???
[/quote]

My mistake  :-[

search in file and substitute:

Code: Select all

$content = &$currentNode->getContent();
if (isset($content) && (strtolower($content->Alias()) == strtolower($root)))
{
with:

Code: Select all

$content = &$currentNode->getContent();
if (isset($content) && (strtolower($content->Alias()) != strtolower($root)))
{
I test it and work
Alby

Re: Recent update changed breadcrumbs

Posted: Sat Jul 28, 2007 7:14 pm
by eyebex
Serialthunder wrote: {breadcrumbs starttext='Sie sind hier' root='home' delimiter='»'}
Try removing "root='home' " from that line. From the docs of version 1.7 of the breadcrums plug-in:

"root - Page alias of a page you want to always appear as the first page in the list."