1

我有一个客户要求在选择“bitpay 付款方式”时隐藏 wrodpress 结帐页面的“计费部分”,因为 bitpay 不需要计费部分。我尝试了很多,但由于支付方式是通过 API 来的,我无法挂钩单选按钮的 id/selector。我不知道如何整理。专家请注意。

在此处输入图像描述

代码东西:

html:

<div class="woocommerce-billing-fields">
.....
</div>

<li class="payment_method_bitpay">
    <input id="payment_method_bitpay" class="input-radio" name="payment_method" value="bitpay" checked="checked" data-order_button_text="Proceed to BitPay" type="radio">

    <label for="payment_method_bitpay">
        Bitcoin <img src="http://localhost/wp/wp-content/plugins/bitpay-for-woocommerce/assets/img/icon.png" alt="Bitcoin"> </label>
            <div class="payment_box payment_method_bitpay">
            <p>You will be redirected to bitpay.com to complete your purchase.</p>
        </div>
</li>

js:

jQuery(document).ready(function($){
        $('#payment_method_bitpay').on('click',function(){
            $('.woocommerce-billing-fields').hide();
        })
})
4

0 回答 0