嗨,我使用脚本在我的主页上显示随机产品,但它没有显示价格。哪里有问题?
http://magentoabid.blogspot.sk/2012/06/display-random-products-from-category.html
嗨,我使用脚本在我的主页上显示随机产品,但它没有显示价格。哪里有问题?
http://magentoabid.blogspot.sk/2012/06/display-random-products-from-category.html
不知道为什么这不起作用,但如果你想尝试其他一些解决方案
更新上面的代码
将前 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”)