$title = '<span itemprop="title">' . $this->aLevel[$i]['title'] . '</span>';
if( array_key_exists('url', $this->aLevel[$i]) ) {
$title = '<a href="' . osc_esc_html($this->aLevel[$i]['url']) . '" itemprop="url">' . $title . '</a>';
}
I found one issue in under Breadcrumb.cpp under sunctin render($separator = '»').
I am suspecting Above code, key 'url' is not available in array for categories under breadcrumb. Could you please help me in resolving this issue?