首页 文章

当我在结帐WooCommerce中的自定义字段上放置文本时自动更改支付网关

提问于
浏览
0

有没有办法在WooCommerce结帐页面中执行此操作 .

我想要的只是WooCommerce结账页面中的自定义textarea字段,当我开始在textarea中写一些内容时,支付网关将自动从paypal更改为check

enter image description here

1 回答

  • 0

    好吧,假设 #txt1 ,你的textarea的id

    在你的 functions.php

    function bh_change_gateway() {?>
    <script>
    jQuery('#txt1').keyup(function(){
    jQuery( '.payment_methods input.input-radio' ).removeProp('checked');
    jQuery( '#your_payment_gateway_id').attr("checked", "checked");
    })
    </script>
    
    
    <?}
    
    add_action('woocommerce_review_order_before_submit','bh_change_gateway' );
    

    谢谢!

相关问题