Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Magento:如何显示产品被添加到愿望清单的次数?包括所有用户。
使用下面的代码,它从我的最后开始工作,以获取所有客户为特定产品添加的愿望清单总数
$wishlist = Mage::getModel('wishlist/item')->getCollection(); $wishlist->getSelect() ->where('main_table.product_id = '.$_product->getId()); echo $count = $wishlist->count(); exit;