登录后台,在”CMS”目录下的Manage Pages中从列表页选择Home Page(或某个网店的首页home)
在Content里面合适的地方加入代码:

{{block type=”catalog/product_new” name=”home.catalog.product.new” alias=”product_homepage” template=”catalog/product/new.phtml”}}

在新的1.4以后的版本中还可以通过插入widget来实现:
{{widget type=”catalog/product_widget_new” products_count=”6″ template=”catalog/product/widget/new/content/new_grid.phtml”}}

注意:新增产品并不会自动显示在新产品列表里。你还要在录入产品信息时,在添加产品General基本信息页明确设置”Set Product as New from Date”才能生效。

============================================================================

了解了New Product的Block,你可以设置其显示在任何你要显示的页面上,不仅仅是首页。

另外的方法是在Edit Page xxxx->Custom Design–>Layout Update XML增加:

<reference name=”content”>
<block type=”catalog/product_new” name=”home.catalog.product.new” alias=”product_new” template=”catalog/product/new.phtml” after=”cms_page”>
<action method=”addPriceBlockType”>
<type>bundle</type>
<block>bundle/catalog_product_price</block>
<template>bundle/catalog/product/price.phtml</template>
</action>
</block>
</reference>
*********************************************

附:如何调用某一分类下的产品图片信息

登录后台,在”CMS”目录下的Manage Pages中从列表页选择Home Page(或某个网店的首页home)
在Content里面合适的地方加入代码:
1.3版:
{{block type=”catalog/product_list” category_id=”1″ template=”catalog/product/list.phtml”}}
1.4版:
{{block type=”catalog/product_list” name=”home.catalog.product.list” alias=”products_homepage” category_id=”3″ template=”catalog/product/list.phtml”}}
注:category_id=要调用的商品分类ID