0

所以请帮帮我..我只是想把默认购物车移到左边

<reference name="left">
    <block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml" before="-">
        <action method="addItemRender"><type>simple</type><block>checkout/cart_item_renderer</block><template>checkout/cart/sidebar/default.phtml</template></action>
        <action method="addItemRender"><type>grouped</type><block>checkout/cart_item_renderer_grouped</block><template>checkout/cart/sidebar/default.phtml</template></action>
        <action method="addItemRender"><type>configurable</type><block>checkout/cart_item_renderer_configurable</block><template>checkout/cart/sidebar/default.phtml</template></action>
        <block type="core/text_list" name="cart_sidebar.extra_actions" as="extra_actions" translate="label" module="checkout">
            <label>Shopping Cart Sidebar Extra Actions</label>  
        </block>
    </block>
</reference>

我将参考块设置为“左”,但推车没有出现在左侧,但它已经从右侧消失了。

4

1 回答 1

1

页面是否使用 2columns-left 布局?如果不是,您将永远不会在左侧边栏中看到任何内容。您可以通过布局更新来解决此问题:

<reference name="root">
    <action method="setTemplate"><template>page/2columns-left.phtml</template></action>
</reference>
于 2013-04-19T20:33:20.800 回答