在Magento商店社区版v1.7的主页中显示最佳产品

时间:2012-07-10 17:57:42

标签: php magento

我正在尝试在主页上显示演示商店社区版v1.7的最佳产品, 首先,我尝试从此链接http://www.magentocommerce.com/magento-connect/bestseller-products-7401.html安装名为 Magento畅销产品扩展程序的扩展程序,但它无法正常工作

所以我决定自己输出最好的产品,

为实现这一点,我创建了两个文件:

app/code/core/Mage/Catalog/Block/Product/MyBestSeller.php
app/design/frontend/default/my_theme/template/catalog/product/mybestseller.phtml    

我将此行添加到主页:

{{block type="catalog/product_mybestseller" template="catalog/product/mybestseller.phtml"}}

然后我刷新了缓存

我的问题是没有任何东西被输出! 这是在主页输出数据的正确方法吗?

以下是MyBestSeller.php的代码

class Mage_Catalog_Block_Product_MyBestSeller extends Mage_Catalog_Block_Product_Abstract{
public function __construct()
{
    parent::__construct();

    $storeId    = Mage::app()->getStore()->getId();

    $products = Mage::getResourceModel('reports/product_collection')
        ->addAttributeToSelect('*')
        ->setStoreId($storeId)
        ->addStoreFilter($storeId)
        ->setOrder('ordered_qty', 'desc');

    Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($products);
    Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($products);

    $products->setPageSize(6)->setCurPage(1);

    $this->setProductCollection($products);
}

}

和mybestseller.phtml这样开始(我认为剩下的代码并不重要,这就是为什么我没有包含它):

<h2 style="background-color: red">from myestseller.phtml</h2><!-- just a test -->

<?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>

<?php $_collectionSize = count($_products->getItems()) ?>
<table class="products-grid" id="products-grid-table">
<?php $i=1; foreach ($_products->getItems() as $_product): ?>

提前感谢您的帮助

1 个答案:

答案 0 :(得分:0)

最后,我通过关闭系统中的编译来解决我的问题 - &gt;工具 - &gt;编译 - &gt;禁用