我在向顶部导航添加类别描述时遇到问题。我正在使用自定义扩展magento 扩展(从http://web-experiment.info/webandpeople-custom-menu-extension.html获得)
到目前为止,我去了 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中获得完整的代码
我认为这不是正确的做法!有没有人告诉我这样做的确切方法?
提前致谢。