I want to how recently viewed products on home page in magento. Currently I am using below code but this is now working. so please help!!

getLayout()->createBlock('reports/product_viewed')->setTemplate('reports/product_viewed.phtml')->toHtml(); ?>
有帮助吗?

解决方案

Did you forget to echo?

    <?php echo $this->getLayout()->createBlock('reports/product_viewed')->setTemplate('reports/product_viewed.phtml')->toHtml(); ?>

By the way if you're doing it from the CMS you need to use:

{{block type="reports/product_viewed" template="reports/product_viewed.phtml"}}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top