如何在magento的产品页面中显示最近比较的产品?

时间:2012-05-02 15:32:38

标签: magento

我同时显示了“比较产品”和“最近浏览过的产品”,但无法显示“最近比较的产品”。

我怎么能这样做......有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

我没有尝试过此代码,但希望它会对您有所帮助。

$items = Mage::getResourceModel('catalog/product_compare_item_collection')
            ->useProductItem(true)
            ->setStoreId(Mage::app()->getStore()->getId());
if (Mage::getSingleton('customer/session')->isLoggedIn()) {
            $items->setCustomerId(Mage::getSingleton('customer/session')->getCustomerId());
        }
        else {
            $items->setVisitorId(Mage::getSingleton('log/visitor')->getId());
        }
相关问题