0
我在向頂部導航添加類別描述時遇到問題。我使用自定義擴展 Magento的擴展名(得到它來自http://web-experiment.info/webandpeople-custom-menu-extension.html)Magento在頂部導航下拉菜單中添加類別描述
到目前爲止我去navigation.php文件,並更改
$html.= '<a class="itemMenuName level' . $level . $active . '" href="' . $this->getCategoryUrl($child) . '"><span>' . $name . ' </span></a>' ;
要
$html.= '<a class="itemMenuName level' . $level . $active . '" href="' . $this->getCategoryUrl($child) . '"><span>' . $name . $description . ' </span></a>' ;
,但仍我只得到類別名稱。
可以在http://puck.ro/Navigation.txt
我認爲這是不這樣做的正確的方式得到完整的代碼! 有沒有人告訴我這樣做的確切方式?
在此先感謝。