我有一个显示新产品的主页,所以产品有一个开始日期。这些在一个小部件中。问题是它们只显示名称、价格、图片等内容......
我想为每个产品显示 3 个属性,以便用户立即看到产品的一些规格,然后可以单击进一步查看所有详细信息。
例如,台式机应具有处理器系列、硬盘容量等。笔记本电脑应显示屏幕尺寸等。
这可能吗?问题是它们具有不同的类别,因此仅将 3 个属性添加到模板会导致问题。
谢谢。
对于每个产品,您可以检查它是否是某个类别的成员,然后根据关联数组中的列表检查并显示属性。像这样的东西:
$_productsCollection = $this->getLoadedProductCollection();
$_helper = $this->helper('catalog/output');
$cats = array( // keys are category IDs
1 => array('processor', 'disk', 'ram'), // attribute codes
2 => array('screen', 'weight', 'battery')
);
// loop product collection in widget
foreach ($_productsCollection as $_product) {
// loop array of categories
foreach ($cat as $cat_id => $attributes) {
// loop array of attributes if the product is in this category
if (in_array($cat_id, $_product->getAvailableInCategories())) {
foreach ($attributes as $attribute) {
if ($attr = $_product->getData($attribute)) {
$resource = $_product->getResource();
// markup and $helper to display image here
echo $resource->getAttribute($attribute)->getStoreLabel().': '.$attr;
// markup and getProductUrl() here, etc.
}
}
}
}
}
这未经测试,但可能会给您一个想法。您需要添加一些代码来处理产品可能是列表中多个类别的成员的情况。