如何创建将出现在购物车页面上的 Magento 模块或小部件?
我在理解如何创建一个向购物车页面添加额外按钮的模块时遇到了很多困难。我找到了很多有关支付模块和独立页面模块的信息,但没有任何关于此的信息。
我只需在常规“结账”按钮下方添加一个按钮,即可将商品数据发布到另一个网站。我已经创建了一个模块,但无法让 Magento 识别它并在该位置显示按钮。任何帮助将不胜感激,即使只是将我发送到我无法找到的现有教程。谢谢。
I’m having a lot of trouble understanding how to create a module that will add an extra button to the shopping cart page. I found lots of info on payment modules and stand-a-lone page modules, but nothing for this.
I simply need to add a button underneath the regular “Checkout” button that can post item data to another website. I’ve created a module but can’t get Magento to recognize it and display the button on that spot. Any help would be greatly appreciated, even just sending me to an existing tutorial that I haven’t been able to find. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自定义模块对此可能有点过分了。模块在 Magento 中意味着非常具体的事物。它是一种将自定义代码插入 Magento 标准操作的机制。您所需要做的就是向购物车页面添加一个按钮。编辑文件的位置
是您要开始查找的位置。只需找到与您要插入自定义 HTML 的位置相对应的 phtml 文件即可。
A custom module is probably overkill for this. Module means a very specific thing in Magento. It's a mechanism for inserting custom code into Magento's standard operations. All you want to do is add a button to the cart page. Editing the file at
is the place you'll want to start looking. Just find the phtml file that corresponds to the place you want to insert your custom HTML and have at it.