|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
- orrin82

-
Total Posts: 1
Joined: 2012-04-07
|
Hallo Marcel,
die Stelle an der die Navigationslinks gebaut werden findest du in Version 1.6.1 hier:
app/code/core/Mage/Catalog/Block/Navigation.php
in Zeile 286
muss dann lauten:
$html[] = '<a href="'.$this->getCategoryUrl($category).'"'.$linkClass.' title="'. $this->escapeHtml($category->getName()) .'">';
... aber besser Modul schreiben…
VG,
fab
|
| |
-
- Posted: April 7 2012
-
| top
| # 9
-
|
 |
 |
 |
|
|
|
|
|
|
-
- awaited

-
Total Posts: 16
Joined: 2012-03-25
|
Hallo,
app/code/core/Mage/Catalog/Block/Navigation.php
1
$html[] = '<a href="'.$this->getCategoryUrl($category).'"'.$linkClass.'>'; $html[] = '<span>' . $this->escapeHtml($category->getName()) . '</span>'; $html[] = '</a>';
ersetzen durch
$html[] = '<a href="'.$this->getCategoryUrl($category).'"'.$linkClass.''; $html[] = ' title="' . $this->escapeHtml($category->getName()) . '">'; $html[] = '<span>' . $this->escapeHtml($category->getName()) . '</span>'; $html[] = '</a>';
und 2
$html.= '<a href="'.$this->getCategoryUrl($category).'"><span>'.$this->htmlEscape($category->getName()).'</span></a>'."\n";
ersetzen durch
$html.= '<a href="'.$this->getCategoryUrl($category).'" title="' . $this->escapeHtml($category->getName()) . '"><span>'.$this->htmlEscape($category->getName()).'</span></a>'."\n";
Gruß,
Alex
|
| |
-
- Posted: December 15 2012
-
| top
| # 12
-
|
 |
 |
 |
|
|
|
|
-
- awaited

-
Total Posts: 16
Joined: 2012-03-25
|
Ok, im Anhang ist Navigation.php für Magento 1.7.0.2
WICHTIG! Bevor man irgendwas ändert, Datei backup und DB backup!
Gruß,
Alex
File Attachments
|
| |
-
- Posted: December 15 2012
-
| top
| # 14
-
|
 |
 |
 |
|
|
|
|