显示magento主页中的所有产品

时间:2014-08-11 07:07:22

标签: magento-1.8

我有这样的类别结构..

-Default Category (0)
     --Ravi varma (2)
       ---Nature (2)
       ---Religious (0)
     --Da Vinci (2)
     --Michelangelo (1)
     --Picasso(1)

Default categoryroot category,其他所有都属于子类别。子类别Ravi varma又有两个子类别。现在我想在主页上显示所有产品。为此,我使用短代码:

{{block type="catalog/product_list" name="home.catalog.product.list" alias="products_homepage" template="catalog/product/list.phtml"}}

但在主页中除了给定的消息外没有显示任何内容。

没有符合此选择的产品。

为了测试我将产品添加到default category,然后该产品仅显示在主页中。由此我意识到属于根类别的产品仅使用此短代码显示在主页上。但我无法将所有类别设置为root。所以我想显示主页中所有类别的所有产品。我怎么能这样做?

我正在使用Magento ver. 1.8.1.0

1 个答案:

答案 0 :(得分:0)

Add all product to the Default category.

由于所有类别都属于默认类别,因此所有产品都应属于默认类别。

然后您的类别结构如下:

-Default Category (8)
     --Ravi varma (2)
       ---Nature (2)
       ---Religious (0)
     --Da Vinci (2)
     --Michelangelo (1)
     --Picasso(1)