我使用magento 1.9并安装MA2主题。 如何分类块从右到左列? 请点击下面的图片=“http://postimg.org/image/jcs8mssct/”
答案 0 :(得分:0)
您可以通过后端更改类别布局: 目录>管理类别>选择您的类别>定制设计标签>页面布局并使用左栏将其更改为2栏,但我不认为这将适用于您的模板,它将更改页面布局但不会显示类别列表,如果您的类别,它可能会显示Magento图层导航是锚
或者您可以使用local.xml添加:
<catalog_category_default translate="label">
<reference name="root">
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
</reference>
<reference name="right">
<remove name="category.list"/>
</reference>
<reference name="left">
<block type="catalog/navigation" name="category.list" before="-" template="catalog/navigation/category_list.phtml"/>
</reference>
</catalog_category_default>
在MA2模板上,您可以在ma2 \ default \ layout \ local.xml
上使用上面相同的代码