Quote Originally Posted by chadderuski View Post
Hi Jade,

Have you had a chance to look into the breadcrumb issues I posted earlier? I spent a couple hours digging through topics, but haven't had much success.

Odd thing: if I remove the &cPath= from the url, the page then re-displays with the full breadcrumb correctly... ???
Make these changes to includes/classes/categories_ul_generator.php:

Line 64
From
function buildBranch($parent_id, $level = 1, $submenu=false)
to:
function buildBranch($parent_id, $level = 1, $submenu=false, $parent_link='')


Line 70
from:
$category_link = $category_id;
to:
$category_link = $parent_link . $category_id;


Line 103
from:
$result .= $this->buildBranch($category_id, $level+1, $submenu);
to:
$result .= $this->buildBranch($category_id, $level+1, $submenu, $category_link . '_');