如何在magento的主页上显示最近的视图产品

时间:2014-05-08 07:50:58

标签: magento

我想最近在magento的主页上查看产品。 目前我正在使用下面的代码,但现在正在使用。所以请帮忙!!

getLayout() - > createBlock( '报告/ product_viewed') - > setTemplate( '报告/ product_viewed.phtml') - > toHtml(); ?>

1 个答案:

答案 0 :(得分:1)

你有没有忘记回声?

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

顺便说一下,如果您从CMS进行操作,则需要使用:

{{block type="reports/product_viewed" template="reports/product_viewed.phtml"}}