无法在Magento 1.9主页上显示产品

时间:2014-11-13 21:31:28

标签: magento product magento-1.9

我正在尝试在Magento 1.9主页上显示所有产品的列表,但我看到的只是“没有与选择匹配的产品”。我已将以下块添加到CMS>主页>内容:

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

尝试添加以下内容而不做任何更改:

column_count="6" products_count="13"

我还修复了这里描述的RWD问题: Show a CATEGORY and its products on Homepage, Magento1.9

我已将产品设置为已启用,将新范围设置为2010年11月至2020年11月,我已刷新缓存。主页仍然显示:

There are no products matching the selection.

更新

按建议添加了category_id,但结果没有变化。

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

这是第2类:

enter image description here

2 个答案:

答案 0 :(得分:2)

要在主页上显示所有产品,应在管理类别的显示设置中将根类别设置为Is Anchor = yes

答案 1 :(得分:1)

您在块中没有类别ID。请尝试添加category_id="ID",例如

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