我正在建立一个网上商店,其中包含超过25家不同商店的产品。对于每个商店,我们在主页上都有类似但略有不同的布局。我想添加额外的模板用于每个商店子主页。我发现我可以将模板添加到local.xml。但是我只能让它适用于一个模板..将多个模板添加到local.xml的正确方法是什么?
<page>
<layouts>
<homepage>
<label>Home Page</label>
<template>page/1column-home.phtml</template>
</homepage>
</layouts>
</page>
很多,
答案 0 :(得分:2)
所以要实现这个,请在config.xml中创建自定义模块
<global>
.......
<page>
<layouts>
<custom_layout_page >
<label>custom_layout_page</label>
<template>page/custom_layout_page.phtml</template>
<layout_handle>custom_layout_page</layout_handle>
</custom_layout_page>
</layouts>
</page>
.......
</global>
见下面的屏幕:
页/ category_custom_template.phtml
然后,您可以对要将此文件指定为布局页面或模板根目录的类别使用布局更新
如下面的屏幕截图: