【发布时间】:2014-07-07 11:53:08
【问题描述】:
我搜索了很多,但没有为我工作任何教程。请帮我解决这个问题
我想在 Magento 的右侧边栏上展示我的特色产品。
谢谢
【问题讨论】:
标签: html magento e-commerce
我搜索了很多,但没有为我工作任何教程。请帮我解决这个问题
我想在 Magento 的右侧边栏上展示我的特色产品。
谢谢
【问题讨论】:
标签: html magento e-commerce
试试下面的扩展
http://inchoo.net/ecommerce/magento/featured-products-on-magento-frontpage/ 在 app/design/frontend/yourpackage/your template/layout 下创建 local.xml
add the below code:
<?xml version="1.0"?>
<layout version="0.1.0">
<default>
<reference name="right">
<block type="featuredproducts/listing" name="featuredproducts_sidebar" template="inchoo/featuredproducts/list.phtml" before="-" />
</reference>
</default>
</layout>
【讨论】: