代码:
// 分期购买支付方式(cheque)按钮文字变更
add_action('woocommerce_review_order_before_submit','change_cheque_button_text');
function change_cheque_button_text(){
?>
<script>
jQuery( document ).on( 'change', '.wc_payment_methods', function () {
console.log('wc_payment_methods change');
if(jQuery('#payment_method_cheque').is( ':checked' )){
jQuery( '#place_order' ).text('Submit Order & Pay Deposit');
}else{
jQuery( '#place_order' ).text('Place order');
}
})
</script>
<?php
}
要规定多个支付方式的话在Js里进行判断,Place order为默认的文字,Submit Order & Pay Deposit为修改好的文字。
© 版权声明
THE END