【发布时间】:2026-01-13 11:15:01
【问题描述】:
我有一个网站使用 WooCommerce 和 WooCommerce Stripe Gateway 插件通过 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