如果选择了送货选项,我会尝试切换到货到付款标签
用户有2个交付选项:
<input type="radio" name="shipping_method[0]" data-index="0" id="shipping_method_0_samedaycourier724" value="samedaycourier:7:24" class="shipping_method">
<input type="radio" name="shipping_method[0]" data-index="0" id="shipping_method_0_samedaycourier15ln" value="samedaycourier:15:LN" class="shipping_method" checked="checked">
如果选中 value=“samedaycourier:15:LN”,我希望货到付款标签为“货到付款”而不是“货到付款”
我复制了一个类似的代码,并试图适应我的需要,不幸的是没有预期的结果。有什么建议吗?
add_action( 'woocommerce_review_order_before_payment', 'customizing_payment_option', 10, 0 );
function customizing_payment_option(){
$text1 = __( 'Cash on Delivery', 'woocommerce' );
$text2 = __( 'Credit Card on EasyBox', 'woocommerce' );
?>
<script>
jQuery(function($){
// 1. Initialising once loaded
if($('input[name^="shipping_method[0]"]:checked').val() == 'samedaycourier:15:LN' )
$('input[id^="payment_method_cod"]').text('<?php echo $text2; ?>');
else
$('input[id^="payment_method_cod"]').text('<?php echo $text1; ?>');
// 2. Live event detection:When shipping method is changed
$( 'form.checkout' ).on( 'change', 'input[name^="shipping_method[0]"]', function() {
var choosenDeliveryMethod = $('input[name^="shipping_method[0]"]:checked').val(); // Chosen
if( choosenDeliveryMethod == 'samedaycourier:15:LN' )
$('input[id^="payment_method_cod"]').text('<?php echo $text2; ?>');
else
$('input[id^="payment_method_cod"]').text('<?php echo $text1; ?>');
});
});
</script>
<?php
}
2条答案
按热度按时间rekjcdws1#
不需要使用jQuery,您可以使用
woocommerce_gateway_title
过滤器挂钩和WC()->session->get( 'chosen_shipping_methods' )
根据需要调整
$payment_id === ''
和$chosen_shipping_methods
的结果因此,您可以获得:
**注意:**要查找正确的
$chosen_shipping_methods
(ID),您可以使用this answer中的“用于调试目的”(第2部分)lsmd5eda2#
这是我用于EasyBox服务的代码(来自bbloomer的修改代码):