我正在使用magento 1.7.0.2。 我使用此代码来显示制造商的产品。 但这表明产品按搜索标准。
我需要在单个页面中显示产品产品,例如this page(左下角的品牌)
<?php
$product = Mage::getModel('catalog/product');
$attributes = Mage::getResourceModel('eav/entity_attribute_collection')
->setEntityTypeFilter($product->getResource()->getTypeId())
->addFieldToFilter('attribute_code', 'manufacturer');
$attribute = $attributes->getFirstItem()->setEntity($product->getResource());
$manufacturers = $attribute->getSource()->getAllOptions(false);
?>
<h1>Brands</h1>
<ul id="manufacturer_list">
<?php foreach ($manufacturers as $manufacturer): ?>
<li><a href="<?php echo Mage::getBaseUrl(); ?>catalogsearch/advanced/result/?manufacturer[]=<?php echo $manufacturer['value'] ?>"><?php echo $manufacturer['label'] ?></a></li>
<?php endforeach; ?>
</ul>
有人帮助我。
提前预测.......:)
答案 0 :(得分:0)
您应该更改网址
<li><a href="<?php echo Mage::getBaseUrl(); ?>catalogsearch/advanced/result/?manufacturer[]=<?php echo $manufacturer['value'] ?>"><?php echo $manufacturer['label'] ?></a></li>
要:
<li><a href="<?php echo Mage::getBaseUrl(); ?>NAMEOFTHECATEGORY?manufacturer=<?php echo $manufacturer['value'] ?>"><?php echo $manufacturer['label'] ?></a></li>
您应指定要显示的产品的NAMEOFTHECATEGORY,否则可能不会显示所有结果。 否则你需要一个类似的扩展名 http://www.magentocommerce.com/magento-connect/shop-by-brands.html或者这个 http://amasty.com/improved-navigation.html这是非常有用的