贴心
全国7×24小时客服热线
安全
病毒杀除率高于99%
稳定
网站可用性高于99.9%
实力
服务68家上市企业及集团公司
点击数:11312015-07-27 11:12:01 来源: 外贸网站建设,深圳外贸网站建设,深圳网站建设,外贸商城网站制作-亿恩科技
Magento目录页设置布局 :
在catalog.xml的<default>里添加
<reference name="root">
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
<action method="setIsHandle"><applied>1</applied></action>
</reference>
就把Magento的目录布局从3列设成带左侧的两列了。
Magento添加新布局 方法:
在app/code/core/Mage/Page/etc/config.xml这个文件里的<global><page><layouts>里面添加
<new_columns module="page" translate="label">
<label>new column</label>
<template>page/new.phtml</template>
<layout_handle>page_new_columns</layout_handle>
</new_columns>
在后台选择布局的时候就多了new column这个选项。或者通过上面代码选择这个新布局。