如何在magento2中禁用Paypal Credit付款方式?

时间:2015-12-08 11:17:34

标签: paypal magento-2.0

Magento 2在我的网站中启用了 PayPal快速结账付款方式,但在前端产品视图页面,购物车页面,结帐付款信息中显示了PayPal快速结账和PayPal信用额度。如何在Magento 2中禁用PayPal信用卡付款方式?

checkout page screenshot

2 个答案:

答案 0 :(得分:1)

转到配置>付款方式> paypal配置,并在“启用PayPal信用”旁边选择否

答案 1 :(得分:1)

如果不是从后端管理的,则可以从文件中删除。只需 $ _ shouldRender

中定义 false

vendor / magento / module-paypal / Block / Bml / Shortcut.php

在行号

25

protected $_shouldRender = false;

谢谢:)