Magento:如何显示产品被添加到愿望清单的次数?

时间:2013-08-04 21:36:18

标签: magento

Magento:如何显示产品添加到愿望清单的次数?包括所有用户。

1 个答案:

答案 0 :(得分:4)

使用以下代码,我的工作是为了获得所有客户为特定产品添加的愿望清单总数

    $wishlist = Mage::getModel('wishlist/item')->getCollection();
    $wishlist->getSelect()                  
                     ->where('main_table.product_id =  '.$_product->getId());
    echo $count = $wishlist->count();

    exit;
相关问题