我在我的产品上添加了yes / no属性,这将允许我在首页上显示推荐的产品(属性设置为yes)。现在,我想在我的主页上显示1个随机产品。这是我现在的代码:
$show_num_items = 2;
$show_index_array = array();
$index_iterator = 1;
$_productCollection = Mage::getResourceModel('reports/product_collection')
->addAttributeToSelect('*')
->addAttributeToFilter('type_id', 'configurable');
if($_productCollection->getSize()):
$show_index_array = range(0,($_productCollection->getSize()-1));
shuffle($show_index_array);
$show_index_array = array_slice($show_index_array, 0, $show_num_items);
foreach($_productCollection as $_product):
$_recommended = $_product->getData('recommend_product');
if($_recommended == 1):
if(in_array($index_iterator, $show_index_array)): ?>
<div><img src="<?php echo $this->helper('catalog/image')->init($_product, 'image'); ?>" />
</div>
<dl>
<dt><a href="<?php echo $_product->getProductUrl(); ?>"><?php echo $_product->getName(); ?></a></dt>
<dd><?php echo $_product->getResource()->getAttribute('short_description')->getFrontend()->getValue($_product); ?></dd>
<dd><a href="<?php echo $_product->getProductUrl(); ?>">Read More</a></dd>
</dl>
<?php endif;
$index_iterator++;
endif;
endforeach;
endif;
这不是那么干净我知道,它有效,但有些情况下它不会返回任何产品和实例,它会返回2.我怎样才能在任何时候返回1个产品?
答案 0 :(得分:2)
尝试使用$show_num_items = 1;
和$index_iterator = 0;
,并将->addAttributeToFilter('recommend_product', 1);
添加到您的收藏中