xtJRuser Posted December 10, 2008 Report Share Posted December 10, 2008 Hallo Leute, weiß einer/eine von euch wie ich den letzten Link im navtrail anders formatieren kann? z.B.: Startseite -> Katalog -> Kategorie Habe leider in google und im Forum nichts dazu gefunden. Gruß Link to comment Share on other sites More sharing options...
hubbabubba Posted December 10, 2008 Report Share Posted December 10, 2008 includes/classes/breadcrumb.php Klasse breadcrumb, Methode trail, Zeile 33 ca. Diese musst du anpassen. mfg Link to comment Share on other sites More sharing options...
xtJRuser Posted December 11, 2008 Author Report Share Posted December 11, 2008 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.