Jump to content
xt:Commerce Community Forum

navtrail formatierung


xtJRuser

Recommended Posts

Danke hubbabubba,

es ist zwar nicht die Lösung des Problems, aber gut. So weiß ich wo ich suchen muss.

Für alle die das selbe Problem haben, hier meine Lösung dafür:

Suche in der Datei "includes/classes/breadcrumb.php" nach folgendem:


function trail($separator = ' - ') {

      $trail_string = '';


      for ($i=0, $n=sizeof($this->_trail); $i<$n; $i++) {

        if (isset($this->_trail[$i]['link']) && xtc_not_null($this->_trail[$i]['link'])) {

          $trail_string .= '<a href="' . $this->_trail[$i]['link'] . '" class="headerNavigation">' . $this->_trail[$i]['title'] . '</a>';

        } else {

          $trail_string .= $this->_trail[$i]['title'];

        }


        if (($i+1) < $n) $trail_string .= $separator;

      }


      return $trail_string;

    }

und ersetzt es durch diesen Code:

function trail($separator = ' - ') {

      $trail_string = '';


      for ($i=0, $n=sizeof($this->_trail); $i<$n; $i++) {

        if (isset($this->_trail[$i]['link']) && xtc_not_null($this->_trail[$i]['link'])) {

			if (($i+1) == $n) {

		  		$trail_string .= '<a href="' . $this->_trail[$i]['link'] . '" class="headerNavigation_end">' . $this->_trail[$i]['title'] . '</a>';

		  	} else {

				$trail_string .= '<a href="' . $this->_trail[$i]['link'] . '" class="headerNavigation">' . $this->_trail[$i]['title'] . '</a>';

			}

        } else {

          $trail_string .= $this->_trail[$i]['title'];

        }


        if (($i+1) < $n) $trail_string .= $separator;

      }


      return $trail_string;

    }

Und schon funktioniert das ganze.

Gruß

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...