如何删除“信用卡(保存)” Magento 的付款方式?

发布于 2024-10-08 17:19:16 字数 180 浏览 1 评论 0原文

我正在使用 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.

alt text

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

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

发布评论

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

评论(4

世俗缘 2024-10-15 17:19:16

信用卡保存方法将允许您接受信用卡信息进行购买,但 Magento 除了简单的 luhn 校验和之外不会尝试验证其准确性。信用卡信息将存储在数据库中,使用调用进行加密

Mage::helper('core')->encrypt($data)

在默认的 1.4.2 安装中,您可以使用以下 SQL 查询查看付款信息(包括信用卡)

SELECT * FROM sales_flat_order_payment

您可以在中查看此付款方式

System -> Config -> Payment Methods -> Saved CC

您可以还将其“启用”配置值设置为“否”,这将删除此选项。

从技术和官僚的角度来看,完全保护信用卡信息是一件困难的事情™。除非您和您的团队拥有执行此操作的专业知识(根据您的问题,我假设是否定的),否则您不希望打开此选项。

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

Mage::helper('core')->encrypt($data)

In a default 1.4.2 instal, you can view the payment information (including the credit card) with the following SQL query

SELECT * FROM sales_flat_order_payment

You can view this Payment method in

System -> Config -> Payment Methods -> Saved CC

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.

心的憧憬 2024-10-15 17:19:16

只需在后端支付方式配置下禁用它即可

Just disable it under the payment methods configuration in back-end

花落人断肠 2024-10-15 17:19:16

这是一个非常糟糕的选择。它将所有用户的信用卡信息保存到您的数据库中(以便您可以稍后在有硬件终端但没有支付网关的情况下手动处理)。前往管理付款选项并将其禁用,它应该会消失。

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.

笑,眼淚并存 2024-10-15 17:19:16

您应该使用 css display: none; 隐藏它

.payment-icons-box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    display: none;
}

You should hide it with css display: none;

.payment-icons-box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    display: none;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文