如何删除“信用卡(保存)” Magento 的付款方式?
我正在使用 paypal 支付产品。如果你看到附件,我会得到 3 个选项。前两个工作正常,实际上是我所需要的。最后一个选项
信用卡(保存)似乎不起作用。有人可以解释一下这个选项是什么,以及我如何删除它。
I’m using paypal payment product. If you see the attached file i get 3 options. The first 2 work fine and are actually all i require. The last option
Credit Card (save) doesn’t seem to work. Can someone explain what this option is, also how can i remove it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
信用卡保存方法将允许您接受信用卡信息进行购买,但 Magento 除了简单的 luhn 校验和之外不会尝试验证其准确性。信用卡信息将存储在数据库中,使用调用进行加密
在默认的 1.4.2 安装中,您可以使用以下 SQL 查询查看付款信息(包括信用卡)
您可以在中查看此付款方式
您可以还将其“启用”配置值设置为“否”,这将删除此选项。
从技术和官僚的角度来看,完全保护信用卡信息是一件困难的事情™。除非您和您的团队拥有执行此操作的专业知识(根据您的问题,我假设是否定的),否则您不希望打开此选项。
The Credit Card saved method will allow you to accept credit card information for a purchase, but Magento will make no attempt to verify its accuracy other than a simple luhn checksum. The credit card information will be stored in the database, encrypted using a call to
In a default 1.4.2 instal, you can view the payment information (including the credit card) with the following SQL query
You can view this Payment method in
You can also set it's "enabled" config value to "No", which will remove this as an option.
Fully securing credit card information is a Hard Thing™, both from a technical and bureaucratic standpoint. Unless you and your team have the expertise to do it (which, based on your question, I'm going to assume is a no) you don't want this option turned on.
只需在后端支付方式配置下禁用它即可
Just disable it under the payment methods configuration in back-end
这是一个非常糟糕的选择。它将所有用户的信用卡信息保存到您的数据库中(以便您可以稍后在有硬件终端但没有支付网关的情况下手动处理)。前往管理付款选项并将其禁用,它应该会消失。
It is a really bad option. It saves all the user's credit card information to your database (so that you could process it manually later if you have a hardware terminal but no payment gateway). Head to the admin payment options and disable it and it should disappear.
您应该使用 css
display: none;
隐藏它You should hide it with css
display: none;