更改 WooCommerce Stripe 网关描述文本

问题描述 投票:0回答:2

我有一个使用 WooCommerce 和 WooCommerce Stripe 网关插件来通过 Stripe 处理付款的网站。

目前,当在结账阶段选择 Stripe 时,会显示一条消息“通过 Stripe 使用信用卡付款”,是否有办法更改此消息?我基本上希望它说“通过 Stripe 使用借记卡或信用卡付款”,因此很明显,不仅仅是信用卡付款。

我想出的最好方法是在

/checkout/payment-method.php
文件中添加一条 if 语句,该文件将为除 Stripe 之外的所有付款方式输出
$gateway->payment_fields();
,并对 Stripe 的输出进行硬编码。

有没有办法只改变

$gateway->payment_fields();
的输出?因为这将是一种“更干净”的做法。我尝试将
$gateway->payment_fields();
存储到变量中,然后使用
str_replace()
输出它,但看起来
$gateway->payment_fields();
只是回显其内容而不是返回它。

wordpress woocommerce stripe-payments
2个回答
2
投票

这是一个管理设置。 WooCommerce>设置>结帐>条纹

stripe admin settings


0
投票

现在可以使用了。

现在哪里可以更改???

© www.soinside.com 2019 - 2024. All rights reserved.