0

我在我的产品上添加了一个是/否属性,这将允许我在首页上显示推荐的产品(属性设置为是)。现在,我想在我的主页上显示 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 产品?

4

1 回答 1

2

尝试使用$show_num_items = 1;and $index_iterator = 0;,并添加->addAttributeToFilter('recommend_product', 1);到您的收藏中

于 2013-07-26T09:41:32.430 回答