0

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

我该怎么做..有人可以帮忙吗?

4

1 回答 1

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());
        }
于 2012-05-03T07:11:41.000 回答