我同时显示了“比较产品”和“最近浏览过的产品”,但无法显示“最近比较的产品”。
我怎么能这样做......有人可以帮忙吗?
答案 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());
}