2012-07-11 88 views
0

我在向頂部導航添加類別描述時遇到問題。我使用自定義擴展 Magento的擴展名(得到它來自http://web-experiment.info/webandpeople-custom-menu-extension.htmlMagento在頂部導航下拉菜單中添加類別描述

到目前爲止我去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

我認爲這是不這樣做的正確的方式得到完整的代碼! 有沒有人告訴我這樣做的確切方式?

在此先感謝。

回答

0

我用這個搶的描述

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

然後就加在循環像這樣

$html[] = '<span>'.$category_data_des.'</span>';