Magento 1.4.2 - 向CMS中的块添加动作过滤器

时间:2011-02-17 13:13:21

标签: php magento magento-1.4

我有以下内容:

<div>
<h2 class="subtitle">Featured Products</h2>
{{block type="catalog/product_list" category_id="41" template="catalog/product/list.phtml"}}</div>
<div>

...我想为它添加一个动作方法:

<action method="setColumnCount"><columns>4</columns></action>

...但是我无法在CMS中添加操作方法,或者我没有正确格式化,有人可以帮忙吗?

谢谢保罗

1 个答案:

答案 0 :(得分:3)

setColumnCount是一种方法,AFAIK CMS指令只能指定属性。尝试直接输入值:

{{block type="catalog/product_list" column_count="4" category_id="41" template="catalog/product/list.phtml"}}</div>

(从here借来的代码)