0

我正在使用 Alan Storm 的建议:指定特定类别的布局更新,而不使用 Magento 的管理仪表板,使用我的 local.xml 中的几个特定于类别的布局更新。

我已经验证了 xml,它作为有效的 xml 返回。我已启用法师开发者模式以报告错误并查看异常日志以查看是否有问题,但没有运气。

这是我的local.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
 * local.xml
 *
 * Local layout modifications for our local theme
 *
 * @category    design
 * @package     my_theme_default
 * @copyright   Copyright (c) 2011 Magebase.
 */
-->
<layout version="0.1.0">
<default>
    <reference name="root">
        <remove name="breadcrumbs"/>
        <remove name="left.permanent.callout" />  <!--the dog-->
        <remove name="right.permanent.callout" />  <!--back to school-->
    </reference>
</default>
<reviews>
    <reference name="root">
        <remove name="header"/>
        <remove name="footer"/>
    </reference>
</reviews>
<review_product_list>
    <reference name="root">
        <remove name="header"/>
        <remove name="footer"/>
    </reference>
</review_product_list>

<CATEGORY_11> <!-- cat 5 or cat 6 -->
            <reference name="content">
                <block type="core/template" name="page.brand" template="page/brand.phtml" />
                <block type="catalog/product_list" name="product_list" template="page/gourmet.phtml">
                    <block type="catalog/layer_view" name="filter_menu" template="catalog/layer/view.phtml"/>
                </block>
          </reference> 
</CATEGORY_11>

<CATEGORY_12><!--cat 7 or cat 8 -->
            <reference name="content">
               <block type="core/template" name="page.brand" template="page/brand.phtml" />
                <block type="catalog/product_list" name="product_list" template="page/toiletries.phtml">
                    <block type="catalog/layer_view" name="filter_menu" template="catalog/layer/view.phtml"/>
                </block>
            </reference>
</CATEGORY_12>

<CATEGORY_9> <!--cat 4 or cat5 -->
            <reference name="content">
                <block type="core/template" name="page.brand" template="page/brand.phtml" />
                <block type="catalog/product_list" name="product_list" template="page/fashion.phtml">
                    <block type="catalog/layer_view" name="filter_menu" template="catalog/layer/view.phtml"/>
                </block>
          </reference>
</CATEGORY_9>

<CATEGORY_6> <!--cat_11 cat_3 -->
            <reference name="content">
                <block type="core/template" name="page.brand" template="page/brand.phtml" />
                <block type="core/template" name="page.flip" template="page/flip.phtml" />
                <block type="catalog/product_list" name="product_list" template="page/accessories.phtml">
                    <block type="catalog/layer_view" name="filter_menu" template="catalog/layer/view.phtml"/>
                </block>
          </reference>
</CATEGORY_6>

<CATEGORY_10> <!-- cat 6 or 7 -->
            <reference name="content">
                <block type="core/template" name="page.brand" template="page/brand.phtml" />
                <block type="catalog/product_list" name="product_list" template="page/lifestyle.phtml">
                    <block type="catalog/layer_view" name="filter_menu" template="catalog/layer/view.phtml"/>
                </block>
          </reference>
</CATEGORY_10>

</layout>

如果有人能告诉我我做错了什么,将不胜感激。谢谢你。

4

2 回答 2

0

在询问某人并考虑之后,事实证明我正在查看 cms 页面,而那些类别布局句柄只更新类别页面而不是 cms 页面,我在类别页面上对其进行了测试,它工作正常。因此,如果我希望这些更新发生在 cms 页面上,我将不得不使用 cms 句柄。

于 2014-05-30T23:50:41.230 回答
0

在系统 -> 配置下转到设计。确保根据您的主题正确设置了当前包名称和布局字段。

于 2014-05-29T15:24:53.867 回答