我是 magento-go 的新手
我已经在首页添加了,
{{block type="catalog/product_list" category_id=my_cat_id template="catalog/product/list.phtml"}}
但是我如何更改设计以在特色产品块滑块中设置?
如果有人知道,请帮助我..
提前致谢
我是 magento-go 的新手
我已经在首页添加了,
{{block type="catalog/product_list" category_id=my_cat_id template="catalog/product/list.phtml"}}
但是我如何更改设计以在特色产品块滑块中设置?
如果有人知道,请帮助我..
提前致谢
Copy all the codes from "catalog/product/list.phtml" to a new phtml file.
You can then change the layout of that phtml as you wish.
your new block will be something like:
{{block type="catalog/product_list" category_id=my_cat_id template="catalog/product/newPage.phtml"}}
Not sure if this is what you were after?
J