我正在尝试在类别页面上设置4个产品列并删除右侧边栏。这是我添加到我的local.xml:
<catalog_category_default translate="label">
<remove name="right"/>
<reference name="root">
<action method="setTemplate"><template>page/2columns-left.phtml</template></action>
</reference>
</catalog_category_default>
它删除了右侧边栏的内容,但在HTML中它仍然有右边栏div,只是没有任何内容。这应该是imho。在list.phtml文件中,我设置了如下列:
$this->setColumnCount(4);
什么不见了?
谢谢!
答案 0 :(得分:1)
试试这个
<action method="setColumnCount"><count>4</count></action>
同样适用于跟随也添加<catalog_category_layered translate="label">
<label>Catalog Category (Anchor)</label>
</catalog_category_layered>
http://path/to/cssFile.css
答案 1 :(得分:0)
尝试这个
<catalog_category_default translate="label">
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
<reference name="product_list">
<action method="setColumnCount"><count>4</count></action> <
</reference>
</catalog_category_default>