有人问了下面的问题,我已经回答了。然后他删除它。所以我发布了这个问题和我的回答,因为这对社区很有用:
在 WooCommerce 中,我试图在不重新加载结帐页面的情况下动态更新复选框表单。我有 2 种送货方式:“送货”和“到付”。我试图仅禁用送货地址部分(使用“如果选择的方法是收集,则送往另一个地址”复选框选项)和所有送货字段。
首先我试过这个:
add_action( 'woocommerce_after_shipping_rate', 'carrier_custom_fields', 30, 2 );
function carrier_custom_fields( $method, $index ) {
if( ! is_checkout()) return; // Only on checkout page
$customer_carrier_method = 'local_pickup:1';
if( $method->id != $customer_carrier_method ) return; // Only display for "local_pickup"
$chosen_method_id = WC()->session->chosen_shipping_methods[ $index ];
// echo $chosen_method_id;
// If the chosen shipping method is 'legacy_local_pickup' we display
if($chosen_method_id == $customer_carrier_method ):
add_filter( 'woocommerce_cart_needs_shipping_address', '__return_false');
else :
add_filter( 'woocommerce_cart_needs_shipping_address', '__return_true');
endif;
}
然后我试了这个:
add_action( 'woocommerce_shipping_method_chosen', 'check_if_local_pickup', 10, 1 );
function check_if_local_pickup( $chosen_method ) {
$chosen_methods = WC()->session->get( 'chosen_shipping_methods' );
$chosen_shipping = $chosen_methods[0];
if ($chosen_shipping == 'local_pickup:1') {
add_filter( 'woocommerce_ship_to_different_address_checked', '__return_false' );
add_filter( 'woocommerce_cart_needs_shipping_address', '__return_false');
return true;
}
else
{
add_filter( 'woocommerce_cart_needs_shipping_address', '__return_true');
return true;
}
}
他们两个都不起作用。
如何在 WooCommerce 中隐藏特定选择的运输方式的结帐运输字段部分?
繁花不似锦