Question

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(); ?>
Était-ce utile?

La solution

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"}}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top