如何更改magento购物车模块的位置?

发布于 2024-07-25 07:54:30 字数 41 浏览 4 评论 0原文

我如何更改magento购物车模块的位置(顶部/按钮...左/右)?

How i change the position of module of magento cart (top/button...left/Right)??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘落散花 2024-08-01 07:54:30

快速但肮脏的方法是更改​​ checkout.xml 布局文件。

打开

frontend/default/default/layout/checkout.xml

找到行,

<reference name="right">
    <block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml" before="-">
        ............................
    </block>
</reference>

将引用名称更改为左,上,根,内容等...这决定了购物车在布局中的位置

<reference name="left">
    <block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml" before="-">
        ............................
    </block>
</reference>

您可能必须清除缓存或删除 /var/cache 才能看到您的更改。

正确的方法是覆盖 checkout Module ,查看 magento wiki 以了解有关覆盖模块的更多信息。

The quick and dirty way is to change the checkout.xml layout file.

open

frontend/default/default/layout/checkout.xml

find the line that says

<reference name="right">
    <block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml" before="-">
        ............................
    </block>
</reference>

and change reference name to left,top,root,content etc... This determines the position of the cart in the layout

<reference name="left">
    <block type="checkout/cart_sidebar" name="cart_sidebar" template="checkout/cart/sidebar.phtml" before="-">
        ............................
    </block>
</reference>

You may have to clear your cache or delete /var/cache to see your changes.

The proper way to this would be to override the checkout Module , look at the magento wiki to learn more about overriding modules.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文