由于bitpay不要求结算部分,我有一个客户要求在选择'bitpay支付方式'时隐藏wrodpress结账页面的'结算部分'。我尝试了很多,但由于支付方法来自API,我无法挂钩单选按钮的ID /选择器。我不知道如何解决它。专家请你好好关注。
代码填充:
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();
})
})