服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > magento教程 >

修改magento 标签列表的布局

时间:2011-08-06 19:13来源:未知 作者:最模板 点击:
修改magento 标签列表的布局
magento默认标签地址是http://zuimoban.com/tag/list/ ,显示所有标签的集合,点击任意标签出现标签的搜索结果:/tag/product/list/tagId/xx/”,页面标题为“Products tagged with ‘xxxxx’ “ ,这个搜索页面在magento里默认是三栏布局,如何修改成自己想要的布局呢?下面以两栏带左侧栏为例:
1.打开tag.xml文件编辑,位置为app/design/frontend/base/default/layout/tag.xml
2.搜索“tag_product_list” ,在次块里面加入下面代码:
 
?View Code XML
 
        <reference name="root">
            <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
        </reference>

类似这样:

?View Code XML
 
    <tag_product_list translate="label">
        <label>Tagged Products List</label>
        <reference name="root">
            <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
        </reference>
        <!-- Mage_Tag -->
        <reference name="content">
            <block type="tag/product_result" name="tag_products" template="catalogsearch/result.phtml">
                </block><block type="catalog/product_list" name="search_result_list" template="catalog/product/list.phtml"></block>
                <action method="setListOrders"/>
                <action method="setListModes"/>
                <action method="setListCollection"/>
 
        </reference>
    </tag_product_list>

3.上传保存后刷新缓存即可。

(责任编辑:最模板)
顶一下
(2)
100%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容