「商品比較」と「最近閲覧した商品」の両方を表示しましたが、「最近比較した商品」を表示できませんでした。
どうすればこれを行うことができますか..誰かが助けてくれますか?
このコードは試していませんが、お役に立てば幸いです。
$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());
}