0

嗨,我使用脚本在我的主页上显示随机产品,但它没有显示价格。哪里有问题?

http://magentoabid.blogspot.sk/2012/06/display-random-products-from-category.html

4

1 回答 1

1

不知道为什么这不起作用,但如果你想尝试其他一些解决方案

  1. http://dx3webs.com/front/2010/10/how-to-create-a-random-featured-product-list-on-home-page-in-magento/

  2. 更新上面的代码

    将前 15 行替换为:

    $category = Mage::getModel('catalog/category')->load($this->getCategoryId());
    $collection = Mage::getResourceModel('catalog/product_collection');
    Mage::getModel('catalog/layer')->prepareProductCollection($collection);
    $collection->getSelect()->Limit($this->getNumProducts())->order('rand()');
    $collection->addStoreFilter();
    $collection->addCategoryFilter($category);
    //print_r($collection);
    

    代替 :

    <?php for ($i=0; $i < $number_of_products; $i++): ?> 
    

    和 :

    <?php foreach($collection as $product) :  ?>  //need to end foreach with <?php endforeach; ?>
    

    替换这样的东西:

    $displayed_products[$random_products[$i]]->getName();
    

    和 :

    $product->getName();
    

    (查找“$displayed_products[$random_products[$i]]”并将其替换为“$product”)

于 2012-10-02T16:34:11.573 回答