我有一个类别包含9个产品 我在主页cms中使用此代码
{{block type="catalog/product_list" column_count="4" category_id="7" template="catalog/product/list.phtml"}}
但是这会显示主页上的所有9个产品 我想只显示4个产品,如何选择在主页上显示哪些产品?什么不是?
答案 0 :(得分:0)
将is_homepage = 1
替换为column_count = 4并在phtml中添加:
<?php if($this->getIsHomepage() && $i==4) break; ?>
之前:
<?php if ($i++%$_columnCount==0): ?>