ok my pb is fixed
if you have same pb as me you may try this.
in breadcrumb_navxt_class.php
look for do_title function
you have this
if(is_page() || is_single() || is_archive() || is_author() || (is_home() && $this->opt[‘link_cur
{
$this->breadcrumb[‘title’] = array();
$this->breadcrumb[‘title’][] = ‘opt[‘urltitle_prefix’] . $this->o…
$this->breadcrumb[‘title’][] = ‘opt[‘urltitle_prefix’] . $this->o…
}
replace ALL 3 LINES IN THIS FUNCTION WITH
$this->breadcrumb[‘title’] = ‘opt[‘urltitle_prefix’] . $this->opt[‘title_home’] . $this->opt[‘urltitle_suffix’] .’” href=”‘ . $this->opt[‘url_home’] . $pre .’”>’ . $this->opt[‘title_home’] . ‘‘;
it fixed the duplicated blog title for me