0

我在向顶部导航添加类别描述时遇到问题。我正在使用自定义扩展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中获得完整的代码

我认为这不是正确的做法!有没有人告诉我这样做的确切方法?

提前致谢。

4

1 回答 1

0

我用它来获取描述

$category_data =Mage::getModel('catalog/category')->load($id);
$category_data_des = $category_data->getDescription();

然后像这样添加到循环中

$html[] = '<span>'.$category_data_des.'</span>';
于 2012-11-21T23:50:47.950 回答