0

如何在 magento 系统上添加布局?我想添加一个新的布局,它也可以从管理面板中选择。

我正在尝试在网站上进行两种布局。一种带横幅的布局,另一种不带横幅的布局。可以说我想要

2Columns-right.phtml2Column-right-wBanner.phtml

如何添加这个?

4

1 回答 1

2

为此,您需要创建一个自定义模块。

在模块 etc/config.xml 中复制以下代码:

<?xml version="1.0"?>
<config>
    <global>
    <page>
        <layouts>
            <custom_layout_wbanner>
                <label>Custom Layout Banner</label>
                <template>page/2Column-right-wBanner.phtml</template>
            </custom_layout_wbanner>
        </layouts>
    </page>
    </global>
</config>

希望这有帮助!

于 2012-09-10T13:44:01.820 回答