• ok this is my web site (https://sis-dcms.ath.cx)

    i have an issue with navXT 2.1.3
    when using static front page AND blog template on another page, the navXT ALWAYS display BLOGTITLE in middle pages.

    example
    i have a static front page as HOME
    my blog title is TEST (setted in option page of navxt)
    NEWS page is my blog page (setted on wordpress reading settings)
    i have a page under NEWS called NEWSLETTER
    i have another CONTACTS page

    – on contatcs page, navXT display: HOME > TEST > CONTACTS and should display only HOME > CONTACTS
    – on news subpages newsletter, navXT display: HOME > TEST > NEWS > NEWSLTEER and should display HOME > NEWS > NEWSLETTER

    ne help pliz?

Viewing 1 replies (of 1 total)
  • Thread Starter aqwxszzz

    (@aqwxszzz)

    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

Viewing 1 replies (of 1 total)
  • The topic ‘breadcrumb navXT 2.1.3 / display blog title twice and show too much middle pages’ is closed to new replies.