Skip to content

Instantly share code, notes, and snippets.

@denishvachhani
Created March 26, 2014 06:31
Show Gist options
  • Save denishvachhani/9777811 to your computer and use it in GitHub Desktop.
Save denishvachhani/9777811 to your computer and use it in GitHub Desktop.
Display Most Viewed Products In Magneto.
<?php
$storeId = Mage::app()->getStore()->getId();
$products_list = Mage::getResourceModel('reports/product_collection')
->addAttributeToSelect('*')
->setStoreId($storeId)
->addStoreFilter($storeId)
->addViewsCount();
print"<pre>";
foreach ($products_list as $product)
{
echo "product Views : ". $product['views'];
print_r($product);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment