在Magento中的购物车页面上更改模板页面布局

时间:2012-08-15 10:14:27

标签: magento

请帮我解决这个问题。我想在magento中更改购物车页面的模板页面布局。

以下是网址:http://www.wildgoosetrading.com/index.php/checkout/cart/

我希望它看起来像其他类别的页面。

提前致谢。

2 个答案:

答案 0 :(得分:8)

您可以在checkout.xml布局文件中设置购物车的模板。

checkout_cart_index部分(<default>之后)查找以下数据块并更改购物车页面正在使用的模板;

    <!-- Mage_Checkout -->
    <reference name="root">
        <action method="setTemplate"><template>page/1column.phtml</template></action>
    </reference>

修改

我知道这是公认的答案,但是soipo的答案是更好的方法。将更改应用于local.xml,不要修改核心布局文件,使用主题布局中的local.xml覆盖它们。见http://www.classyllama.com/development/magento-development/the-better-way-to-modify-magento-layout

答案 1 :(得分:6)

在local.xml文件中,您只需添加以下内容:

 <checkout_cart_index translate="label">
 <reference name="root">
        <action method="setTemplate"><template>page/3columns.phtml</template ></action >  
  </reference>

只需将模板更改为您需要的模板。