RonnyK wrote:
Till,
I did a quick test in 1.0.6 but 7 level deep was no problem, I only read about a setting to not display "menus with 'not show in menu'" to be not set in the breadcrumbs.
Ronny
Hi Ronny,
thanks for this impulse. I found the following section in the function.breadcrumbs.php
Code: Select all
if($content->ShowInMenu() && $content->Active() )
and changed it to that:
If I've got time, I'll find a better solution for this problem.
It would be great if somebody who is not a php noob like me could write these simple 4-5 lines
just like the request
Code: Select all
#Check if user has requested an initial delimiter
if (isset($params['initial'])) {
if ($params['initial'] == "1") {
$trail .= $delimiter . " ";
}
}
if the user has set the option to 1 (yes show non shown menu links in the breadcrumb) then fill in
instead of
Code: Select all
$content->ShowInMenu() && if($content->!Active()
in the if question on line 72.
Would be someone so kind?
Thanks for your help!
Till