Magento:如何显示产品添加到愿望清单的次数?包括所有用户。
答案 0 :(得分:4)
使用以下代码,我的工作是为了获得所有客户为特定产品添加的愿望清单总数
$wishlist = Mage::getModel('wishlist/item')->getCollection();
$wishlist->getSelect()
->where('main_table.product_id = '.$_product->getId());
echo $count = $wishlist->count();
exit;