我正在使用 Magento v. 1.6.2.0。我已将类别分层导航过滤器设置为水平显示在我的站点中并使用 1 列页面布局。我还设置了一个类别图像。
因此,当您导航到该类别类别时,目录列表前面的元素按从上到下的顺序显示:
分层导航过滤器 > 类别图像 > 产品网格。
我想把这个顺序改成这个:
类别图像 > 分层导航过滤器 > 产品网格。
我试图修改 catalog.xml 文件,但我无法使它工作:
...
<catalog_category_layered translate="label">
<label>Catalog Category (Anchor)</label>
<reference name="left">
<block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"/>
</reference>
<reference name="content">
<block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
<block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
<!-- <action method="addReviewSummaryTemplate"><type>default</type><template>review/helper/su.phtml</template></action> -->
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
<block type="page/html_pager" name="product_list_toolbar_pager"/>
...
对此有什么好的建议吗?