gpt4 book ai didi

php - 根据 Woocommerce 选择的付款方式更改结账时的付款按钮

转载 作者:行者123 更新时间:2023-12-01 02:51:42 26 4
gpt4 key购买 nike

嗨,有人知道如何根据所选的付款方式更改结账时的“付款”按钮吗?我发现了一些东西,但我不知道是否可以将其转换为 function.php 中的片段?谢谢。

    public function __construct() {
$this->id = 'ry_ecpay_atm';
$this->has_fields = false;
$this->order_button_text = __('Pay via ATM', RY_WT::$textdomain);
$this->method_title = __('ECPay ATM', RY_WT::$textdomain);
$this->method_description = '';

最佳答案

这可以通过以下代码来完成(您将在其中设置支付网关 ID 和相应的所需按钮文本):

add_filter('woocommerce_order_button_text', 'custom_order_button_text' );
function custom_order_button_text( $order_button_text ) {
$default = __( 'Place order', 'woocommerce' ); // If needed
// Get the chosen payment gateway (dynamically)
$chosen_payment_method = WC()->session->get('chosen_payment_method');

// Set your payment gateways IDs in EACH "IF" statement
if( $chosen_payment_method == 'bacs'){
// HERE set your custom button text
$order_button_text = __( 'Bank wire payment', 'woocommerce' );
} elseif( $chosen_payment_method == 'ry_ecpay_atm'){
// HERE set your custom button text
$order_button_text = __( 'Place order via ECPay', 'woocommerce' );
}
// jQuery code: Make dynamic text button "on change" event ?>
<script type="text/javascript">
(function($){
$('form.checkout').on( 'change', 'input[name^="payment_method"]', function() {
var t = { updateTimer: !1, dirtyInput: !1,
reset_update_checkout_timer: function() {
clearTimeout(t.updateTimer)
}, trigger_update_checkout: function() {
t.reset_update_checkout_timer(), t.dirtyInput = !1,
$(document.body).trigger("update_checkout")
}
};
t.trigger_update_checkout();
});
})(jQuery);
</script><?php

return $order_button_text;
}

代码位于事件子主题(或主题)的 function.php 文件中。已测试且有效。

关于php - 根据 Woocommerce 选择的付款方式更改结账时的付款按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49405604/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com