如何更改magento购物车模块的位置?
我如何更改magento购物车模块的位置(顶部/按钮...左/右)?
How i change the position of module of magento cart (top/button...left/Right)??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我如何更改magento购物车模块的位置(顶部/按钮...左/右)?
How i change the position of module of magento cart (top/button...left/Right)??
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
快速但肮脏的方法是更改 checkout.xml 布局文件。
打开
找到行,
将引用名称更改为左,上,根,内容等...这决定了购物车在布局中的位置
您可能必须清除缓存或删除 /var/cache 才能看到您的更改。
正确的方法是覆盖 checkout Module ,查看 magento wiki 以了解有关覆盖模块的更多信息。
The quick and dirty way is to change the checkout.xml layout file.
open
find the line that says
and change reference name to left,top,root,content etc... This determines the position of the cart in the layout
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.