I want the total sales of the product to be displayed on my homepage. How can I do that?
I would also like to know how to request the total number of items sold (quantity) on the first page.
In my store there will be only 1 product (virtual).
Edit
I found this code and it works well on the product view page.
$sku = nl2br($_product->getSku()); $_productCollection = Mage::getResourceModel('reports/product_collection') ->addOrderedQty() ->addAttributeToFilter('sku', $sku) ->setOrder('ordered_qty', 'desc') ->getFirstItem(); $product = $_productCollection; echo 'Already Bought '.(int)$product->ordered_qty;
But on the first page, how would I point directly to the product identifier I want?
source share