老问题很老了,但我想我会插话,因为这个问题没有得到回答,其他人可能会觉得这很有用..
所以,首先,这段代码依赖于产品列表循环,即:
$_productCollection=$this->getLoadedProductCollection();
foreach ($_productCollection as $_product) {
*... your product list output here ...*
}
其次,此代码取决于使用“BRANDS”作为 Magento 根类别的子类别(无论它被称为什么)的设置,并且每个品牌名称都被设置为“BRANDS”子类别的子类别. 您可能需要在下面的代码中增加该猫的名称或更改您的类别结构以匹配我的。
因此,在 app/design/frontend/your-package/your-theme/template/catalog/product/list.phtml 中已经设置的“ProductCollection”循环中,您可以放置此代码段以呼应品牌名称。
$categories = $_product->getCategoryCollection()
->addAttributeToSelect('name')
->addAttributeToFilter('is_active', array('eq' => 1));
foreach($categories as $category) {
$catID = $category->getId();
$catParent = Mage::getModel('catalog/category')->load($catID)
->getParentCategory();
if ( $catParent->getName() == 'BRANDS' ) {
echo '<a href="'.$category->getUrl().'">'.$category->getName().'</a>';
}
}
额外编辑:添加代码以将品牌名称包装在品牌类别页面的链接中。