문제

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