我怎么会发出一个设计更新的Magento更换list.phtml模板只为搜索结果页? 有没有做到这一点的方法不止一种? 这将是理想的,如果有办法像我可以为单独的类别做它通过管理面板,但如果没有的话编辑XML文件是好的了。
Answer 1:
您应该创建该文件: app/design/frontend/YOURPACKAGE/YOURTHEME/layout/local.xml
具有内容:
<?xml version="1.0" encoding="UTF-8"?>
<layout version="0.1.0">
<catalogsearch_result_index>
<reference name="search_result_list">
<action method="setTemplate"><template>custom/list.phtml</template></action>
</reference>
</catalogsearch_result_index>
</layout>
并创建像自定义模板app/design/frontend/YOURPACKAGE/YOURTHEME/template/custom/list.phtml
文章来源: Magento design update to replace list.phtml on search results page only