Luis
Luis

Reputation: 1060

Magento: How to display how many times a product has been added to wishlist?

Magento: How to display how many times a product has been added to wishlist? Including all users.

Upvotes: 2

Views: 2164

Answers (1)

liyakat
liyakat

Reputation: 11853

Use Below code it is working from my end to get total number of wish list added by all customer for particular prodduct

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

    exit;

Upvotes: 4

Related Questions